create-nocobase-app 0.7.0-alpha.12 → 0.7.0-alpha.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nocobase-app",
|
|
3
|
-
"version": "0.7.0-alpha.
|
|
3
|
+
"version": "0.7.0-alpha.13",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"licenses": [
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"url": "git+https://github.com/nocobase/nocobase.git",
|
|
27
27
|
"directory": "packages/core/create-nocobase-app"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "62eb85de5f341f343577232ebecce7f9fb7a5b21"
|
|
30
30
|
}
|
|
@@ -15,6 +15,7 @@ module.exports = (opts) => {
|
|
|
15
15
|
'nocobase-prod': 'cross-env DOTENV_CONFIG_PATH=.env node -r dotenv/config packages/app/server/lib/index.js',
|
|
16
16
|
'start-client': 'cd packages/app/client && npm run start',
|
|
17
17
|
'start-server': 'npm run nocobase start',
|
|
18
|
+
'start-pm2': 'pm2-runtime start packages/app/server/lib/index.js -- start',
|
|
18
19
|
build: 'lerna run build',
|
|
19
20
|
'build-docs': 'dumi build',
|
|
20
21
|
test: 'node ./jest.cli.js -i',
|
|
@@ -27,6 +28,7 @@ module.exports = (opts) => {
|
|
|
27
28
|
dependencies: {
|
|
28
29
|
'cross-env': '^7.0.3',
|
|
29
30
|
dotenv: '^10.0.0',
|
|
31
|
+
pm2: '^5.2.0',
|
|
30
32
|
},
|
|
31
33
|
devDependencies: {
|
|
32
34
|
'@testing-library/react': '^12.1.2',
|