@dword-design/base-config-nuxt 9.0.4 → 9.0.6
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/resolve-aliases.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dword-design/base-config-nuxt",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.6",
|
|
4
4
|
"repository": "dword-design/base-config-nuxt",
|
|
5
5
|
"funding": "https://github.com/sponsors/dword-design",
|
|
6
6
|
"license": "MIT",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"lodash-es": "^4.17.21",
|
|
53
53
|
"nuxt": "^4.0.0",
|
|
54
54
|
"output-files": "^3.0.0",
|
|
55
|
-
"require-package-name": "
|
|
55
|
+
"require-package-name": "npm:@dword-design/require-package-name-fork@^0.0.1",
|
|
56
56
|
"sass": "^1.94.2",
|
|
57
57
|
"stylelint": "^16.26.0",
|
|
58
58
|
"typescript": "^5.9.3",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"delay": "^7.0.0",
|
|
71
71
|
"get-port": "^7.1.0",
|
|
72
72
|
"nuxt-dev-ready": "^5.0.1",
|
|
73
|
-
"port-ready": "
|
|
73
|
+
"port-ready": "npm:@dword-design/port-ready-fork@^0.0.3",
|
|
74
74
|
"tree-kill-promise": "^4.0.0"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
declare module 'port-ready' {
|
|
2
|
-
interface PortReadyOptions {
|
|
3
|
-
host?: string;
|
|
4
|
-
port: number;
|
|
5
|
-
timeout?: number;
|
|
6
|
-
}
|
|
7
|
-
function portReady(port: number): Promise<number>;
|
|
8
|
-
function portReady(options: PortReadyOptions): Promise<number>;
|
|
9
|
-
|
|
10
|
-
export = portReady;
|
|
11
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
declare module 'require-package-name' {
|
|
2
|
-
/**
|
|
3
|
-
* Extract package name from a require/import string
|
|
4
|
-
* @param str - The require/import string (e.g., 'lodash/isString', '@babel/core/package.json')
|
|
5
|
-
* @returns The package name or null if not found
|
|
6
|
-
*/
|
|
7
|
-
function requirePackageName(str: string): string | null;
|
|
8
|
-
namespace requirePackageName {
|
|
9
|
-
/**
|
|
10
|
-
* Extract base package name (without scope) from a require/import string
|
|
11
|
-
* @param str - The require/import string
|
|
12
|
-
* @returns The base package name or null if not found
|
|
13
|
-
*/
|
|
14
|
-
function base(str: string): string | null;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export = requirePackageName;
|
|
18
|
-
}
|