@dword-design/base-config-app 6.0.3 → 7.0.1
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/dist/get-nginx-config.d.ts +1 -1
- package/dist/index.js +4 -1
- package/package.json +16 -14
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: (packageConfig: any) =>
|
|
1
|
+
declare const _default: (packageConfig: any) => string;
|
|
2
2
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -56,17 +56,20 @@ export default function (config) {
|
|
|
56
56
|
pull: {
|
|
57
57
|
arguments: "<endpoint>",
|
|
58
58
|
handler: endpoint => execaCommand(`ceiling pull ${endpoint}`, {
|
|
59
|
+
cwd: this.cwd,
|
|
59
60
|
stdio: "inherit"
|
|
60
61
|
})
|
|
61
62
|
},
|
|
62
63
|
push: {
|
|
63
64
|
arguments: "<endpoint>",
|
|
64
65
|
handler: endpoint => execaCommand(`ceiling push ${endpoint}`, {
|
|
66
|
+
cwd: this.cwd,
|
|
65
67
|
stdio: "inherit"
|
|
66
68
|
})
|
|
67
69
|
},
|
|
68
70
|
setupDeploy: {
|
|
69
|
-
handler: () => execaCommand(
|
|
71
|
+
handler: () => execaCommand(`${packageName`pm2`} deploy production setup`, {
|
|
72
|
+
cwd: this.cwd,
|
|
70
73
|
stdio: "inherit"
|
|
71
74
|
})
|
|
72
75
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dword-design/base-config-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"repository": "dword-design/base-config-app",
|
|
5
5
|
"funding": "https://github.com/sponsors/dword-design",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,36 +26,38 @@
|
|
|
26
26
|
"lint": "base lint",
|
|
27
27
|
"prepare": "base prepare",
|
|
28
28
|
"prepublishOnly": "base prepublishOnly",
|
|
29
|
-
"test": "base test"
|
|
29
|
+
"test": "base test",
|
|
30
|
+
"typecheck": "base typecheck",
|
|
31
|
+
"verify": "base verify"
|
|
30
32
|
},
|
|
31
33
|
"dependencies": {
|
|
32
|
-
"@dword-design/base-config-nuxt": "^
|
|
34
|
+
"@dword-design/base-config-nuxt": "^8.0.2",
|
|
33
35
|
"@semantic-release/exec": "^6.0.3",
|
|
34
36
|
"ceiling": "^4.0.0",
|
|
35
|
-
"depcheck-package-name": "^
|
|
36
|
-
"endent": "npm:@dword-design/endent@^1.4.
|
|
37
|
+
"depcheck-package-name": "^4.0.0",
|
|
38
|
+
"endent": "npm:@dword-design/endent@^1.4.7",
|
|
37
39
|
"execa": "^9.6.0",
|
|
38
40
|
"fs-extra": "^11.3.0",
|
|
39
|
-
"hosted-git-info": "^
|
|
41
|
+
"hosted-git-info": "^8.1.0",
|
|
40
42
|
"load-pkg": "^4.0.0",
|
|
41
|
-
"output-files": "^
|
|
43
|
+
"output-files": "^3.0.0",
|
|
42
44
|
"parse-git-config": "npm:@dword-design/parse-git-config@^0.0.1",
|
|
43
45
|
"parse-packagejson-name": "^1.0.1",
|
|
44
|
-
"pm2": "^
|
|
46
|
+
"pm2": "^6.0.8",
|
|
45
47
|
"tagged-template-noop": "^2.1.1",
|
|
46
48
|
"yaml": "^2.8.0"
|
|
47
49
|
},
|
|
48
50
|
"devDependencies": {
|
|
49
|
-
"@dword-design/base": "^
|
|
50
|
-
"@playwright/browser-chromium": "^1.
|
|
51
|
-
"@playwright/test": "^1.
|
|
51
|
+
"@dword-design/base": "^15.1.0",
|
|
52
|
+
"@playwright/browser-chromium": "^1.54.1",
|
|
53
|
+
"@playwright/test": "^1.54.1",
|
|
52
54
|
"get-port": "^7.1.0",
|
|
53
|
-
"nuxt-dev-ready": "^
|
|
54
|
-
"tree-kill-promise": "^
|
|
55
|
+
"nuxt-dev-ready": "^5.0.1",
|
|
56
|
+
"tree-kill-promise": "^4.0.0"
|
|
55
57
|
},
|
|
56
58
|
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
|
|
57
59
|
"engines": {
|
|
58
|
-
"node": ">=
|
|
60
|
+
"node": ">=20"
|
|
59
61
|
},
|
|
60
62
|
"publishConfig": {
|
|
61
63
|
"access": "public"
|