fa85f86298
This required the following changes in the Gulpfile: - Defining a series of tasks is no longer done with arrays, but with the `gulp.series` function. The `web` target is refactored to use a smaller number of tasks to prevent tasks from running multiple times. - Getting all tasks must now be done through the task registry. - Tasks that don't return anything must call `done` upon completion. Moreover, this upgrade allows us to use the latest Node.js on Travis CI again.
12 lines
175 B
YAML
12 lines
175 B
YAML
language: node_js
|
|
node_js:
|
|
- node
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
install:
|
|
- npm install -g npm@latest
|
|
- npm install -g gulp-cli
|
|
- npm install
|
|
- npm update
|