forked from olcxjas-softworks/LarpixClient
fix gitignore again
This commit is contained in:
parent
ce5a1e330b
commit
5da5c2afe2
3329 changed files with 364540 additions and 3 deletions
19
electron/node_modules/rimraf/dist/esm/rimraf-native.js
generated
vendored
Normal file
19
electron/node_modules/rimraf/dist/esm/rimraf-native.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { promises, rmSync } from './fs.js';
|
||||
const { rm } = promises;
|
||||
export const rimrafNative = async (path, opt) => {
|
||||
await rm(path, {
|
||||
...opt,
|
||||
force: true,
|
||||
recursive: true,
|
||||
});
|
||||
return true;
|
||||
};
|
||||
export const rimrafNativeSync = (path, opt) => {
|
||||
rmSync(path, {
|
||||
...opt,
|
||||
force: true,
|
||||
recursive: true,
|
||||
});
|
||||
return true;
|
||||
};
|
||||
//# sourceMappingURL=rimraf-native.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue