@dword-design/base-config-app 4.0.0 → 4.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import baseConfigNuxt from '@dword-design/base-config-nuxt';
1
+ import getBaseConfigNuxt from '@dword-design/base-config-nuxt';
2
2
  import packageName from 'depcheck-package-name';
3
3
  import { execaCommand } from 'execa';
4
4
  import loadPkg from 'load-pkg';
@@ -7,7 +7,8 @@ import yaml from 'yaml';
7
7
  import dockerCompose from "./docker-compose.js";
8
8
  import getEcosystemConfig from "./get-ecosystem-config.js";
9
9
  import getNginxConfig from "./get-nginx-config.js";
10
- export default (() => {
10
+ export default (config => {
11
+ const baseConfigNuxt = getBaseConfigNuxt(config);
11
12
  const packageConfig = loadPkg.sync();
12
13
  return {
13
14
  ...baseConfigNuxt,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base-config-app",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "repository": "dword-design/base-config-app",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",