@digest/scripts 4.10.0-beta.1 → 4.11.0-next.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.
|
@@ -98,7 +98,7 @@ type completeDigest = {
|
|
|
98
98
|
webpackTypeScript: boolean;
|
|
99
99
|
webpackWorkbox: boolean;
|
|
100
100
|
};
|
|
101
|
-
type digest = {
|
|
101
|
+
type digest = Omit<Partial<completeDigest>, 'context'> & {
|
|
102
102
|
angular?: false;
|
|
103
103
|
babel?: false | string;
|
|
104
104
|
babelAngular?: false;
|
|
@@ -158,7 +158,7 @@ type digest = {
|
|
|
158
158
|
webpackStyleLint?: false;
|
|
159
159
|
webpackTypeScript?: false;
|
|
160
160
|
webpackWorkbox?: false;
|
|
161
|
-
}
|
|
161
|
+
};
|
|
162
162
|
export default settings;
|
|
163
163
|
export { keys };
|
|
164
164
|
export type { completeDigest, digest };
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@digest/scripts",
|
|
3
3
|
"title": "Digest Scripts",
|
|
4
4
|
"license": "LGPL-3.0-or-later",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.11.0-next.1",
|
|
6
6
|
"description": "Helper scripts for various digests",
|
|
7
7
|
"author": "wallzero @wallzeroblog (http://wallzero.com)",
|
|
8
8
|
"contributors": [
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"digest",
|
|
44
44
|
"scripts"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "a994e0af7fd50411237d760b07a74236a6a96cff"
|
|
47
47
|
}
|