build: cleanup .yarnrc

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`.
This commit is contained in:
Michael Bradley, Jr 2019-02-05 12:43:36 -06:00 committed by Michael Bradley
parent 0ba16278bd
commit 2bf1b15ac3
10 changed files with 6 additions and 19 deletions

1
packages/.yarnrc Normal file
View File

@ -0,0 +1 @@
--install.no-lockfile true

View File

@ -1,3 +0,0 @@
--*.scripts-prepend-node-path true
--install.check-files true
--install.no-lockfile true

View File

@ -1,3 +0,0 @@
--*.scripts-prepend-node-path true
--install.check-files true
--install.no-lockfile true

View File

@ -1,2 +0,0 @@
--*.scripts-prepend-node-path true
--install.check-files true

View File

@ -0,0 +1 @@
--install.no-lockfile true

View File

@ -1,3 +0,0 @@
--*.scripts-prepend-node-path true
--install.check-files true
--install.no-lockfile true

View File

@ -1,3 +0,0 @@
--*.scripts-prepend-node-path true
--install.check-files true
--install.no-lockfile true

View File

@ -1,3 +0,0 @@
--*.scripts-prepend-node-path true
--install.check-files true
--install.no-lockfile true

View File

@ -1,7 +1,8 @@
{
"name": "embark-service",
"requires": true,
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"haml": {
"version": "0.4.3",

View File

@ -7,5 +7,6 @@
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
},
"version": "0.0.1"
}