mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
add deps for js angular1.8
This commit is contained in:
parent
8e2da4f159
commit
b373892ddc
3800 changed files with 125627 additions and 40 deletions
15
.yarn/unplugged/node-gyp-npm-11.1.0-bd7044e197/node_modules/node-gyp/lib/clean.js
generated
vendored
Normal file
15
.yarn/unplugged/node-gyp-npm-11.1.0-bd7044e197/node_modules/node-gyp/lib/clean.js
generated
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
'use strict'
|
||||
|
||||
const fs = require('graceful-fs').promises
|
||||
const log = require('./log')
|
||||
|
||||
async function clean (gyp, argv) {
|
||||
// Remove the 'build' dir
|
||||
const buildDir = 'build'
|
||||
|
||||
log.verbose('clean', 'removing "%s" directory', buildDir)
|
||||
await fs.rm(buildDir, { recursive: true, force: true })
|
||||
}
|
||||
|
||||
module.exports = clean
|
||||
module.exports.usage = 'Removes any generated build files and the "out" dir'
|
Loading…
Add table
Add a link
Reference in a new issue