mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-18 08:36:51 +00:00
Yarn merges `.yarnrc` from the current working directory with `.yarnrc` files higher in the directory tree, so that file isn't needed in each package. Unfortunately, npm doesn't do the same for `.npmrc` files, so a similar cleanup isn't possible. Add version info to `test_app/extensions/embark-service/package.json` to that `yarn install` can work correctly if manually invoked in `test_app`.
14 lines
293 B
JSON
14 lines
293 B
JSON
{
|
|
"name": "embark-service",
|
|
"version": "0.0.1",
|
|
"lockfileVersion": 1,
|
|
"requires": true,
|
|
"dependencies": {
|
|
"haml": {
|
|
"version": "0.4.3",
|
|
"resolved": "https://registry.npmjs.org/haml/-/haml-0.4.3.tgz",
|
|
"integrity": "sha1-90BTGPPC7dGXpIsbjysvE+C7U3g="
|
|
}
|
|
}
|
|
}
|