()
| 5 | const typescriptPath = path.join(__dirname, '..', 'node_modules', '.bin'); |
| 6 | |
| 7 | function copyCSS() { |
| 8 | const src = path.join(__dirname, '..', '..', '..', 'core', 'css'); |
| 9 | const dst = path.join(__dirname, '..','dist', 'css'); |
| 10 | |
| 11 | fs.removeSync(dst); |
| 12 | fs.copySync(src, dst); |
| 13 | } |
| 14 | |
| 15 | function buildSchematics(){ |
| 16 | return new Promise((resolve, reject) => { |