@m2c2kit/build-helpers 0.3.26 → 0.3.27
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/index.js +1 -1
- package/package.json +5 -3
package/dist/index.js
CHANGED
|
@@ -9380,7 +9380,7 @@ function requirePolyfills () {
|
|
|
9380
9380
|
var backoff = 0;
|
|
9381
9381
|
fs$rename(from, to, function CB (er) {
|
|
9382
9382
|
if (er
|
|
9383
|
-
&& (er.code === "EACCES" || er.code === "EPERM")
|
|
9383
|
+
&& (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY")
|
|
9384
9384
|
&& Date.now() - start < 60000) {
|
|
9385
9385
|
setTimeout(function() {
|
|
9386
9386
|
fs.stat(to, function (stater, st) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m2c2kit/build-helpers",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.27",
|
|
4
4
|
"description": "Utility functions for building m2c2kit apps",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -15,17 +15,19 @@
|
|
|
15
15
|
"dist/index.d.ts"
|
|
16
16
|
],
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@rollup/plugin-commonjs": "28.0.
|
|
18
|
+
"@rollup/plugin-commonjs": "28.0.5",
|
|
19
19
|
"@rollup/plugin-json": "6.1.0",
|
|
20
20
|
"@rollup/plugin-node-resolve": "16.0.1",
|
|
21
21
|
"@rollup/plugin-replace": "6.0.2",
|
|
22
22
|
"@types/findup-sync": "4.0.5",
|
|
23
|
+
"@types/fs-extra": "11.0.4",
|
|
23
24
|
"@types/semver": "7.7.0",
|
|
24
25
|
"cpy": "10.1.0",
|
|
25
26
|
"findup-sync": "5.0.0",
|
|
27
|
+
"fs-extra": "11.3.0",
|
|
26
28
|
"magic-string": "0.30.17",
|
|
27
29
|
"rimraf": "6.0.1",
|
|
28
|
-
"rollup": "4.
|
|
30
|
+
"rollup": "4.43.0",
|
|
29
31
|
"rollup-plugin-copy": "3.5.0",
|
|
30
32
|
"rollup-plugin-dts": "6.2.1",
|
|
31
33
|
"rollup-plugin-esbuild": "6.2.1",
|