@dword-design/base-config-app 2.0.18 → 3.0.0

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +12 -12
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import baseConfigNuxt from '@dword-design/base-config-nuxt';
2
2
  import packageName from 'depcheck-package-name';
3
- import execa from 'execa';
3
+ import { execaCommand } from 'execa';
4
4
  import loadPkg from 'load-pkg';
5
5
  import outputFiles from 'output-files';
6
6
  import yaml from 'yaml';
@@ -44,18 +44,18 @@ export default {
44
44
  ...baseConfigNuxt.commands,
45
45
  pull: {
46
46
  arguments: '<endpoint>',
47
- handler: endpoint => execa.command(`ceiling pull ${endpoint}`, {
47
+ handler: endpoint => execaCommand(`ceiling pull ${endpoint}`, {
48
48
  stdio: 'inherit'
49
49
  })
50
50
  },
51
51
  push: {
52
52
  arguments: '<endpoint>',
53
- handler: endpoint => execa.command(`ceiling push ${endpoint}`, {
53
+ handler: endpoint => execaCommand(`ceiling push ${endpoint}`, {
54
54
  stdio: 'inherit'
55
55
  })
56
56
  },
57
57
  setupDeploy: {
58
- handler: () => execa.command('pm2 deploy production setup', {
58
+ handler: () => execaCommand('pm2 deploy production setup', {
59
59
  stdio: 'inherit'
60
60
  })
61
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base-config-app",
3
- "version": "2.0.18",
3
+ "version": "3.0.0",
4
4
  "repository": "dword-design/base-config-app",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",
@@ -22,32 +22,32 @@
22
22
  "test": "base test"
23
23
  },
24
24
  "dependencies": {
25
- "@dword-design/base-config-nuxt": "^3.0.0",
25
+ "@dword-design/base-config-nuxt": "^4.0.0",
26
26
  "@dword-design/functions": "^4.0.0",
27
27
  "@semantic-release/exec": "^5.0.0",
28
28
  "ceiling": "^3.0.0",
29
- "depcheck-package-name": "^2.0.0",
30
- "execa": "^5.0.0",
31
- "fs-extra": "^10.0.0",
32
- "hosted-git-info": "^4.0.0",
29
+ "depcheck-package-name": "^3.0.0",
30
+ "execa": "^7.1.1",
31
+ "fs-extra": "^11.1.1",
32
+ "hosted-git-info": "^6.1.1",
33
33
  "load-pkg": "^4.0.0",
34
34
  "output-files": "^2.0.0",
35
35
  "parse-git-config": "^3.0.0",
36
36
  "parse-packagejson-name": "^1.0.1",
37
- "pm2": "^4.4.0",
38
- "yaml": "^1.10.0"
37
+ "pm2": "^5.3.0",
38
+ "yaml": "^2.2.2"
39
39
  },
40
40
  "devDependencies": {
41
- "@dword-design/base": "^9.1.4",
42
- "@dword-design/puppeteer": "^5.0.0",
41
+ "@dword-design/base": "^10.0.1",
42
+ "@dword-design/puppeteer": "^6.0.10",
43
43
  "@dword-design/tester": "^2.0.9",
44
44
  "@dword-design/tester-plugin-puppeteer": "^2.1.19",
45
45
  "@dword-design/tester-plugin-tmp-dir": "^2.1.3",
46
46
  "port-ready": "^0.1.0",
47
- "tree-kill-promise": "^2.0.6"
47
+ "tree-kill-promise": "^3.0.14"
48
48
  },
49
49
  "engines": {
50
- "node": ">=14"
50
+ "node": ">=16"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"