Changeset 9930
- Timestamp:
- 05/26/2020 05:22:26 AM (5 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/Gruntfile.js
r3720 r9930 1 1 module.exports = function( grunt ) { 2 3 const sass = require('node-sass'); 2 4 3 5 // Load tasks. … … 14 16 src: [ '**/*.scss' ], 15 17 options: { 18 implementation: sass, 16 19 outputStyle: 'expanded' 17 20 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/package.json
r5072 r9930 9 9 "license": "GPL-2.0+", 10 10 "devDependencies": { 11 "grunt": "~0.4.5", 12 "grunt-contrib-watch": "~0.6.1", 13 "grunt-sass": "~1.0.0", 14 "matchdep": "~0.3.0" 11 "grunt": "~1.1.0", 12 "grunt-contrib-watch": "~1.1.0", 13 "grunt-sass": "~3.1.0", 14 "matchdep": "~2.0.0", 15 "node-sass": "^4.14.1" 15 16 } 16 17 } 17
Note: See TracChangeset
for help on using the changeset viewer.