Skip to content

Commit ef9a85a

Browse files
committed
no longer using yarn
1 parent 1884d97 commit ef9a85a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tasks/watch.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ watcher.on('all', (event, path) => {
2020

2121
function compileCss (path) {
2222
if (/\.css$/.test(path)) {
23-
runTask('CSS compilation', () => execSync('yarn run compile:css'))
23+
runTask('CSS compilation', () => execSync('npm run compile:css'))
2424
}
2525
}
2626

2727
function compileJs (path) {
2828
if (/\.js$/.test(path)) {
29-
runTask('JavaScript compilation', () => execSync('yarn run compile:javascript'))
29+
runTask('JavaScript compilation', () => execSync('npm run compile:javascript'))
3030
}
3131
}
3232

3333
function compileTemplate (path) {
3434
if (/\.soy$/.test(path)) {
35-
runTask('Template compilation', () => execSync('yarn run compile:template'))
35+
runTask('Template compilation', () => execSync('npm run compile:template'))
3636
}
3737
}
3838

0 commit comments

Comments
 (0)