mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
feat(): initial vue support
This commit is contained in:

committed by
Mike Hartington

parent
a9b30646fe
commit
73cff0c61a
9
vue/scripts/clean.js
Normal file
9
vue/scripts/clean.js
Normal file
@ -0,0 +1,9 @@
|
||||
const fs = require('fs-extra')
|
||||
const path = require('path')
|
||||
|
||||
const cleanDirs = ['dist']
|
||||
|
||||
cleanDirs.forEach(dir => {
|
||||
const cleanDir = path.join(__dirname, '../', dir)
|
||||
fs.removeSync(cleanDir)
|
||||
})
|
Reference in New Issue
Block a user