update prepublish process
This commit is contained in:
parent
bfc7cc7c57
commit
3fb3936aa9
|
@ -1,5 +1,6 @@
|
||||||
const { copyDir, fileForEach } = require('./plugin/fs')
|
const { copyDir, fileForEach, readFile } = require('./plugin/fs')
|
||||||
const { print } = require('./plugin/print')
|
const print = require('./plugin/print')
|
||||||
|
const path = require('path')
|
||||||
|
|
||||||
const PACKAGE_SRC = './src'
|
const PACKAGE_SRC = './src'
|
||||||
const COMPILE_SRC = './lib'
|
const COMPILE_SRC = './lib'
|
||||||
|
@ -13,8 +14,18 @@ async function start () {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
fileForEach(COMPILE_SRC, src => {
|
const abstract = await abstractLessFromVue()
|
||||||
print.tip(src)
|
}
|
||||||
|
|
||||||
|
async function abstractLessFromVue () {
|
||||||
|
fileForEach(COMPILE_SRC, async src => {
|
||||||
|
if (path.extname(src) !== '.vue') return
|
||||||
|
|
||||||
|
const data = await readFile(src).split('<style>')
|
||||||
|
|
||||||
|
const style = data
|
||||||
|
|
||||||
|
console.warn(data)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -281,6 +281,20 @@ async function fileForEach (src, callback) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function readFile (src, encoding = 'utf8') {
|
||||||
|
return new Promise(resolve => {
|
||||||
|
fs.readFile(src, encoding, (err, data) => {
|
||||||
|
if (err) {
|
||||||
|
console.warn(err)
|
||||||
|
|
||||||
|
resolve(false)
|
||||||
|
} else {
|
||||||
|
resolve(data)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
readDir,
|
readDir,
|
||||||
stat,
|
stat,
|
||||||
|
@ -289,5 +303,6 @@ module.exports = {
|
||||||
emptyDir,
|
emptyDir,
|
||||||
unlinkDirFileByExtname,
|
unlinkDirFileByExtname,
|
||||||
copyDir,
|
copyDir,
|
||||||
fileForEach
|
fileForEach,
|
||||||
|
readFile
|
||||||
}
|
}
|
|
@ -16,6 +16,4 @@ const print = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = print
|
||||||
print
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue