@mochabug/adaptkit 0.14.4 → 0.14.5
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/assets/rollup.config.ts +12 -2
- package/bin/index.js +1 -1
- package/package.json +1 -1
package/assets/rollup.config.ts
CHANGED
|
@@ -11,7 +11,12 @@ const config = [
|
|
|
11
11
|
file: 'dist/executors.js',
|
|
12
12
|
format: 'esm'
|
|
13
13
|
},
|
|
14
|
-
plugins: [typescript(), nodeResolve(
|
|
14
|
+
plugins: [typescript(), nodeResolve(
|
|
15
|
+
{
|
|
16
|
+
browser: true,
|
|
17
|
+
preferBuiltins: false
|
|
18
|
+
}
|
|
19
|
+
), commonjs(), terser()]
|
|
15
20
|
}
|
|
16
21
|
];
|
|
17
22
|
|
|
@@ -23,7 +28,12 @@ if (fs.existsSync('src/configurators.ts')) {
|
|
|
23
28
|
file: 'dist/configurators.js',
|
|
24
29
|
format: 'esm'
|
|
25
30
|
},
|
|
26
|
-
plugins: [typescript(), nodeResolve(
|
|
31
|
+
plugins: [typescript(), nodeResolve(
|
|
32
|
+
{
|
|
33
|
+
browser: true,
|
|
34
|
+
preferBuiltins: false
|
|
35
|
+
}
|
|
36
|
+
), commonjs(), terser()]
|
|
27
37
|
});
|
|
28
38
|
}
|
|
29
39
|
|
package/bin/index.js
CHANGED
|
@@ -3202,7 +3202,7 @@ function handleVersion(bump, cmd) {
|
|
|
3202
3202
|
}
|
|
3203
3203
|
async function main() {
|
|
3204
3204
|
const notifier = updateNotifier({
|
|
3205
|
-
pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.14.
|
|
3205
|
+
pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.14.5"}')
|
|
3206
3206
|
});
|
|
3207
3207
|
notifier.notify({ isGlobal: true, defer: false });
|
|
3208
3208
|
program
|