Skip to content

Commit

Permalink
Upgrade gulp-sass to 5.0.0, add package-lock.json file to be tracked (#…
Browse files Browse the repository at this point in the history
…1079)

* Upgrade gulp-sass to 5.0.0, add package-lock.json file to be tracked

* Eslint fixes

* Update gulpfile to use correct compiler, lock in Sass 1.32.13 version to ignore warning flags

* add os cross-compatabile method to set gulp develop command

* remove unnecessary new lines within init method

Co-authored-by: lloan alas <[email protected]>
  • Loading branch information
maxxcrawford and lloan authored Sep 7, 2021
1 parent a490d19 commit 3e06fba
Show file tree
Hide file tree
Showing 5 changed files with 5,829 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
.envrc
*.sqlite3
node_modules
package-lock.json
env/
__pycache__
web-ext-artifacts/
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { src, watch, series, dest } = require("gulp");
const sass = require("gulp-sass");
const sass = require("gulp-sass")(require("sass"));
const del = require("del");

// directory for building LESS, SASS, and bundles
Expand Down
Loading

0 comments on commit 3e06fba

Please sign in to comment.