mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
827 B
29 lines
827 B
import { execSync } from 'child_process'
|
|
import fs from 'fs'
|
|
import path from 'path'
|
|
|
|
const pkgPath = path.resolve('package.json')
|
|
|
|
// 校验包合法性
|
|
fs.accessSync(path.resolve('dist'), fs.constants.F_OK)
|
|
fs.accessSync(path.resolve('dist/canvas-editor.es.js'), fs.constants.F_OK)
|
|
fs.accessSync(path.resolve('dist/canvas-editor.umd.js'), fs.constants.F_OK)
|
|
|
|
// 缓存项目package.json
|
|
const sourcePkg = fs.readFileSync(pkgPath, 'utf-8')
|
|
|
|
// 删除无用属性
|
|
const targetPkg = JSON.parse(sourcePkg)
|
|
Reflect.deleteProperty(targetPkg, 'dependencies')
|
|
Reflect.deleteProperty(targetPkg.scripts, 'postinstall')
|
|
fs.writeFileSync(pkgPath, JSON.stringify(targetPkg, null, 2))
|
|
|
|
// 发布包
|
|
try {
|
|
execSync('npm publish')
|
|
} catch (error) {
|
|
throw new Error(error)
|
|
} finally {
|
|
// 还原
|
|
fs.writeFileSync(pkgPath, sourcePkg)
|
|
}
|
|
|