Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
source of testing-shrinkwrap-abbrev package
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 30, 2021
1 parent 5ff2800 commit c08510a
Show file tree
Hide file tree
Showing 12 changed files with 149 additions and 0 deletions.
27 changes: 27 additions & 0 deletions 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.

10 changes: 10 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.1.0/package.json
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"
}
}
3 changes: 3 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.1.0/test.js
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 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.

10 changes: 10 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.1.1/package.json
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"
}
}
2 changes: 2 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.1.1/test.js
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 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.

10 changes: 10 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.2.0/package.json
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"
}
}
2 changes: 2 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.2.0/test.js
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 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.

10 changes: 10 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.2.1/package.json
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"
}
}
2 changes: 2 additions & 0 deletions test/fixtures/testing-shrinkwrap-abbrev/1.2.1/test.js
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')

0 comments on commit c08510a

Please # to comment.