@dword-design/base-config-nuxt 9.0.2 → 9.0.4
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/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -49,10 +49,10 @@ declare const _default: (this: Base, config: ConfigNuxt) => {
|
|
|
49
49
|
};
|
|
50
50
|
export default _default;
|
|
51
51
|
export { default as getEslintConfig } from './get-eslint-config';
|
|
52
|
-
export { default as analyze } from './analyze';
|
|
53
52
|
export { default as dev } from './dev';
|
|
54
|
-
export { default as
|
|
53
|
+
export { default as analyze } from './analyze';
|
|
55
54
|
export { default as prepublishOnly } from './prepublish-only';
|
|
56
|
-
export { default as
|
|
55
|
+
export { default as build } from './build';
|
|
57
56
|
export { default as typecheck } from './typecheck';
|
|
57
|
+
export { default as lint } from './lint';
|
|
58
58
|
export { default as start } from './start';
|
package/dist/index.js
CHANGED
|
@@ -23,7 +23,7 @@ const resolver = createRequire(import.meta.url);
|
|
|
23
23
|
const isInNodeModules = __dirname.split(pathLib.sep).includes("node_modules");
|
|
24
24
|
export default defineBaseConfig(function (config) {
|
|
25
25
|
return {
|
|
26
|
-
allowedMatches: [".stylelintignore", ".stylelintrc.json", "server/api/**/*.ts", "server/plugins/**/*.ts", "server/routes/**/*.ts", "server/middleware/**/*.ts", "server/utils/**/*.ts", "app/app.vue", "app/assets", "app/components/**/*.vue", "app/composables/*.ts", "content", "i18n/*/*.ts", "app/layouts/*.vue", "app/middleware/*.ts", "app/pages/**/*.vue", "app/plugins/*.ts", "app/utils/*.ts", "model", "modules", "config.ts", "public", "shared/utils/*.ts", "shared/types/*.ts"],
|
|
26
|
+
allowedMatches: [".stylelintignore", ".stylelintrc.json", "server/api/**/*.ts", "server/plugins/**/*.ts", "server/routes/**/*.ts", "server/middleware/**/*.ts", "server/utils/**/*.ts", "app/app.vue", "app/assets", "app/components/**/*.vue", "app/composables/*.ts", "content", "i18n/*/*.ts", "app/layouts/*.vue", "app/middleware/*.ts", "app/pages/**/*.vue", "app/pages/**/*.spec.ts", "app/plugins/*.ts", "app/utils/*.ts", "model", "modules", "config.ts", "public", "shared/utils/*.ts", "shared/types/*.ts"],
|
|
27
27
|
commands: {
|
|
28
28
|
analyze,
|
|
29
29
|
build,
|
|
@@ -84,10 +84,10 @@ export default defineBaseConfig(function (config) {
|
|
|
84
84
|
};
|
|
85
85
|
});
|
|
86
86
|
export { default as getEslintConfig } from "./get-eslint-config.js";
|
|
87
|
-
export { default as analyze } from "./analyze.js";
|
|
88
87
|
export { default as dev } from "./dev.js";
|
|
89
|
-
export { default as
|
|
88
|
+
export { default as analyze } from "./analyze.js";
|
|
90
89
|
export { default as prepublishOnly } from "./prepublish-only.js";
|
|
91
|
-
export { default as
|
|
90
|
+
export { default as build } from "./build.js";
|
|
92
91
|
export { default as typecheck } from "./typecheck.js";
|
|
92
|
+
export { default as lint } from "./lint.js";
|
|
93
93
|
export { default as start } from "./start.js";
|