mirror of
https://github.com/kognise/water.css.git
synced 2026-01-21 20:45:52 +01:00
8 lines
211 B
JavaScript
8 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')
|
|
}
|