js-dev-tool 1.0.0 → 1.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.
package/package.json
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export function checkENV(): "ci" | "gitpod" | "maybe-local";
|
|
2
|
+
/** @type {TWebpackProgressHandler} */
|
|
3
|
+
export const wppHandlerV4: TWebpackProgressHandler;
|
|
4
|
+
/** @type {TWebpackProgressHandler} */
|
|
5
|
+
export const wppHandlerV5: TWebpackProgressHandler;
|
|
6
|
+
/**
|
|
7
|
+
* @type {() => boolean}
|
|
8
|
+
*/
|
|
9
|
+
export const isWebpackV5later: () => boolean;
|
package/tsconfig.json
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
"moduleResolution": "nodenext",
|
|
9
9
|
"resolveJsonModule": true,
|
|
10
10
|
"baseUrl": "./",
|
|
11
|
+
"declaration": true,
|
|
12
|
+
"emitDeclarationOnly": true,
|
|
11
13
|
"allowJs": true,
|
|
12
14
|
"checkJs": true,
|
|
13
15
|
"target": "es2019",
|
|
@@ -15,11 +17,14 @@
|
|
|
15
17
|
"outDir": "./build"
|
|
16
18
|
},
|
|
17
19
|
"include": [
|
|
18
|
-
"
|
|
20
|
+
"index.js",
|
|
21
|
+
"utils.js",
|
|
22
|
+
"tools.js",
|
|
23
|
+
"*.d.ts",
|
|
19
24
|
"./**/*.js",
|
|
20
25
|
"./**/*.d.ts"
|
|
21
26
|
],
|
|
22
27
|
"exclude": [
|
|
23
|
-
|
|
28
|
+
"./**/npm-outdated*.js",
|
|
24
29
|
]
|
|
25
30
|
}
|