Last active
November 12, 2018 10:59
-
-
Save rix0rrr/a05bd6b30e5364401cddce7bd6efe129 to your computer and use it in GitHub Desktop.
Lerna bug repro
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
/* lerna.json */ | |
{ | |
"packages": [ | |
"packages/*" | |
], | |
"rejectCycles": "true", | |
"version": "0.1.0" | |
} |
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
/* package.json */ | |
{ | |
"devDependencies": { | |
"lerna": "^3.4.3" | |
}, | |
"name": "lerna-bug" | |
} |
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
/* packages/consumer/package.json */ | |
{ | |
"name": "consumer", | |
"private": true, | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"dependencies": { | |
"left-pad": "^1.3.0", | |
"mytoolspackage": "^1.0.0" | |
}, | |
"bundledDependencies": [ | |
"mytoolspackage" | |
], | |
"author": "", | |
"license": "ISC" | |
} |
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
/* packages/mytoolspackage/package.json */ | |
{ | |
"name": "mytoolspackage", | |
"private": true, | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment