This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
source of testing-shrinkwrap-abbrev package
- Loading branch information
Showing
12 changed files
with
149 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
test/fixtures/testing-shrinkwrap-abbrev/1.1.0/npm-shrinkwrap.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
test/fixtures/testing-shrinkwrap-abbrev/1.1.0/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "@isaacs/testing-shrinkwrap-abbrev", | ||
"version": "1.1.0", | ||
"dependencies": { | ||
"abbrev": "*" | ||
}, | ||
"scripts": { | ||
"test": "node test.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const { version } = require('./package.json') | ||
const { version: abbrev } = require('./node_modules/abbrev/package.json') | ||
require('assert').equal(version, abbrev, 'should have same version') |
27 changes: 27 additions & 0 deletions
27
test/fixtures/testing-shrinkwrap-abbrev/1.1.1/npm-shrinkwrap.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
test/fixtures/testing-shrinkwrap-abbrev/1.1.1/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "@isaacs/testing-shrinkwrap-abbrev", | ||
"version": "1.1.2", | ||
"dependencies": { | ||
"abbrev": "*" | ||
}, | ||
"scripts": { | ||
"test": "node test.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
const { version: abbrev } = require('./node_modules/abbrev/package.json') | ||
require('assert').equal(abbrev, '1.1.1', 'should have expected version') |
23 changes: 23 additions & 0 deletions
23
test/fixtures/testing-shrinkwrap-abbrev/1.2.0/npm-shrinkwrap.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
test/fixtures/testing-shrinkwrap-abbrev/1.2.0/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "@isaacs/testing-shrinkwrap-abbrev", | ||
"version": "1.2.0", | ||
"dependencies": { | ||
"abbrev": "*" | ||
}, | ||
"scripts": { | ||
"test": "node test.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
const { version: abbrev } = require('./node_modules/abbrev/package.json') | ||
require('assert').equal(abbrev, '1.1.0', 'should have same version') |
23 changes: 23 additions & 0 deletions
23
test/fixtures/testing-shrinkwrap-abbrev/1.2.1/npm-shrinkwrap.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
test/fixtures/testing-shrinkwrap-abbrev/1.2.1/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "@isaacs/testing-shrinkwrap-abbrev", | ||
"version": "1.2.1", | ||
"dependencies": { | ||
"abbrev": "*" | ||
}, | ||
"scripts": { | ||
"test": "node test.js" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
const { version: abbrev } = require('./node_modules/abbrev/package.json') | ||
require('assert').equal(abbrev, '1.1.1', 'should have expected version') |