Update capacitor version
This commit is contained in:
parent
91155bce0a
commit
f3b3a86b32
610 changed files with 28718 additions and 7101 deletions
24
@capacitor/cli/node_modules/rimraf/dist/commonjs/rimraf-native.js
generated
vendored
Normal file
24
@capacitor/cli/node_modules/rimraf/dist/commonjs/rimraf-native.js
generated
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.rimrafNativeSync = exports.rimrafNative = void 0;
|
||||
const fs_js_1 = require("./fs.js");
|
||||
const { rm } = fs_js_1.promises;
|
||||
const rimrafNative = async (path, opt) => {
|
||||
await rm(path, {
|
||||
...opt,
|
||||
force: true,
|
||||
recursive: true,
|
||||
});
|
||||
return true;
|
||||
};
|
||||
exports.rimrafNative = rimrafNative;
|
||||
const rimrafNativeSync = (path, opt) => {
|
||||
(0, fs_js_1.rmSync)(path, {
|
||||
...opt,
|
||||
force: true,
|
||||
recursive: true,
|
||||
});
|
||||
return true;
|
||||
};
|
||||
exports.rimrafNativeSync = rimrafNativeSync;
|
||||
//# sourceMappingURL=rimraf-native.js.map
|
Loading…
Add table
Add a link
Reference in a new issue