Skip to content

Commit da1733e

Browse files
andreiconstantinescubirkir
authored andcommitted
fix: start command for dev env (#95)
1 parent 1667ea0 commit da1733e

1 file changed

Lines changed: 5 additions & 15 deletions

File tree

package.json

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"scripts": {
77
"setup": "lerna bootstrap; yarn run link",
8-
"start": "lerna exec -- yarn dev --stream",
8+
"start": "lerna run dev --stream",
99
"link": "lerna exec -- yarn link",
1010
"unlink": "lerna exec -- yarn unlink",
1111
"clean": "lerna run clean; rimraf {.cache,node_modules,reports,packages/**/{node_modules,lib,build,coverage},yarn.lock}",
@@ -25,9 +25,7 @@
2525
"docs": "typedoc --readme none --mode modules --out docs/api --ignoreCompilerErrors --excludeExternals --external-modulemap \".*(packages/[^/]+)/.*\" --logger none --name \"Prime CMS\" ./packages"
2626
},
2727
"workspaces": {
28-
"packages": [
29-
"packages/*"
30-
]
28+
"packages": ["packages/*"]
3129
},
3230
"husky": {
3331
"hooks": {
@@ -36,26 +34,18 @@
3634
}
3735
},
3836
"commitlint": {
39-
"extends": [
40-
"@commitlint/config-conventional"
41-
]
37+
"extends": ["@commitlint/config-conventional"]
4238
},
4339
"lint-staged": {
44-
"*.{ts,tsx,js,json,md}": [
45-
"prettier --write",
46-
"git add"
47-
]
40+
"*.{ts,tsx,js,json,md}": ["prettier --write", "git add"]
4841
},
4942
"prettier": {
5043
"singleQuote": true,
5144
"trailingComma": "es5",
5245
"printWidth": 100
5346
},
5447
"renovate": {
55-
"extends": [
56-
"config:base",
57-
"schedule:weekly"
58-
],
48+
"extends": ["config:base", "schedule:weekly"],
5949
"automerge": true,
6050
"major": {
6151
"automerge": false

0 commit comments

Comments
 (0)