@dword-design/base-config-app 9.0.10 → 9.0.11

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 +2 -20
  2. package/package.json +1 -3
package/dist/index.js CHANGED
@@ -4,7 +4,6 @@ import { defineBaseConfig } from "@dword-design/base";
4
4
  import getBaseConfigNuxt, { getEslintConfig } from "@dword-design/base-config-nuxt";
5
5
  import packageName from "depcheck-package-name";
6
6
  import endent from "endent";
7
- import { execaCommand } from "execa";
8
7
  import fs from "fs-extra";
9
8
  import outputFiles from "output-files";
10
9
  import { readPackageSync } from "read-pkg";
@@ -26,7 +25,7 @@ export default defineBaseConfig(function (config) {
26
25
  ignore: ["ecosystem.json", "prod-entry.mjs"],
27
26
  virtualImports: config.virtualImports
28
27
  }),
29
- gitignore: [...baseConfigNuxt.gitignore, "/.ceilingrc.json", "/nginx/default.config"],
28
+ gitignore: [...baseConfigNuxt.gitignore, "/nginx/default.config"],
30
29
  isLockFileFixCommitType: true,
31
30
  npmPublish: false,
32
31
  prepare: async () => {
@@ -101,23 +100,6 @@ export default defineBaseConfig(function (config) {
101
100
  EOF
102
101
  `
103
102
  }]
104
- }),
105
- commands: {
106
- ...baseConfigNuxt.commands,
107
- pull: {
108
- arguments: "<endpoint>",
109
- handler: endpoint => execaCommand(`ceiling pull ${endpoint}`, {
110
- cwd: this.cwd,
111
- stdio: "inherit"
112
- })
113
- },
114
- push: {
115
- arguments: "<endpoint>",
116
- handler: endpoint => execaCommand(`ceiling push ${endpoint}`, {
117
- cwd: this.cwd,
118
- stdio: "inherit"
119
- })
120
- }
121
- }
103
+ })
122
104
  };
123
105
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base-config-app",
3
- "version": "9.0.10",
3
+ "version": "9.0.11",
4
4
  "repository": "dword-design/base-config-app",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",
@@ -32,10 +32,8 @@
32
32
  "@dword-design/base": "^16.2.6",
33
33
  "@dword-design/base-config-nuxt": "^9.0.1",
34
34
  "@semantic-release/exec": "^7.1.0",
35
- "ceiling": "^4.0.0",
36
35
  "depcheck-package-name": "^4.0.1",
37
36
  "endent": "npm:@dword-design/endent@^1.4.7",
38
- "execa": "^9.6.1",
39
37
  "fs-extra": "^11.3.2",
40
38
  "output-files": "^3.0.0",
41
39
  "parse-packagejson-name": "npm:@dword-design/parse-packagejson-name-fork@^0.0.2",