mirror of
https://github.com/kognise/water.css.git
synced 2025-04-21 09:42:01 +02:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
import { build, watch } from './gulpfile.js'
|
|
if (process.argv[2] === 'build') {
|
|
build()
|
|
} else if (process.argv[2] === 'watch') {
|
|
watch()
|
|
} else {
|
|
console.log('Unknown command, supported: build, watch')
|
|
}
|