1
0
mirror of https://github.com/kognise/water.css.git synced 2025-04-21 09:42:01 +02:00
css-water.css/index.js
2022-01-22 12:45:38 -06:00

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')
}