mirror of
https://github.com/SECTL/SecScore.git
synced 2026-07-19 06:04:22 +08:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
const afterPack = async (context) => {
|
|
const appOutDir = context.appOutDir
|
|
fs.mkdirSync(path.join(appOutDir, 'data'), { recursive: true })
|
|
}
|
|
|
|
module.exports = afterPack
|
|
module.exports.default = afterPack
|