Ticket #49594: 49594.diff
File 49594.diff, 2.2 KB (added by , 5 years ago) |
---|
-
.gitignore
28 28 /src/wp-includes/css/dist 29 29 /src/wp-includes/css/*.min.css 30 30 /src/wp-includes/css/*-rtl.css 31 /packagehash.txt 31 32 32 33 # Files and folders that get created in wp-content 33 34 /src/wp-content/blogs.dir -
Gruntfile.js
2 2 /* jshint esversion: 6 */ 3 3 /* globals Set */ 4 4 var webpackConfig = require( './webpack.config' ); 5 var installChanged = require( 'install-changed' ); 5 6 6 7 module.exports = function(grunt) { 7 8 var path = require('path'), … … 41 42 ); 42 43 } 43 44 45 // First do `npm install` if package.json has changed. 46 installChanged.watchPackage(); 47 44 48 // Load tasks. 45 49 require('matchdep').filterDev(['grunt-*', '!grunt-legacy-util']).forEach( grunt.loadNpmTasks ); 46 50 // Load legacy utils. -
package-lock.json
11652 11652 } 11653 11653 } 11654 11654 }, 11655 "install-changed": { 11656 "version": "1.1.0", 11657 "resolved": "https://registry.npmjs.org/install-changed/-/install-changed-1.1.0.tgz", 11658 "integrity": "sha512-APUWMdQnwGcyv9bmuvgxCcrR6qtD996+hofEEAPGSjsvGIZuBpBF0yrYAKOl9tmhm2AzxJC4EXUbxZ/SId4NIA==", 11659 "dev": true 11660 }, 11655 11661 "internal-ip": { 11656 11662 "version": "4.3.0", 11657 11663 "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", -
package.json
59 59 "grunt-sass": "~3.1.0", 60 60 "grunt-webpack": "^3.1.3", 61 61 "ink-docstrap": "1.3.2", 62 "install-changed": "1.1.0", 62 63 "jquery-migrate": "1.4.1", 63 64 "matchdep": "~2.0.0", 64 65 "node-sass": "~4.13.1", -
.