Make WordPress Core

Ticket #49594: 49594.diff

File 49594.diff, 2.2 KB (added by azaozz, 5 years ago)
  • .gitignore

     
    2828/src/wp-includes/css/dist
    2929/src/wp-includes/css/*.min.css
    3030/src/wp-includes/css/*-rtl.css
     31/packagehash.txt
    3132
    3233# Files and folders that get created in wp-content
    3334/src/wp-content/blogs.dir
  • Gruntfile.js

     
    22/* jshint esversion: 6 */
    33/* globals Set */
    44var webpackConfig = require( './webpack.config' );
     5var installChanged = require( 'install-changed' );
    56
    67module.exports = function(grunt) {
    78        var path = require('path'),
     
    4142                );
    4243        }
    4344
     45        // First do `npm install` if package.json has changed.
     46        installChanged.watchPackage();
     47
    4448        // Load tasks.
    4549        require('matchdep').filterDev(['grunt-*', '!grunt-legacy-util']).forEach( grunt.loadNpmTasks );
    4650        // Load legacy utils.
  • package-lock.json

     
    1165211652                                }
    1165311653                        }
    1165411654                },
     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                },
    1165511661                "internal-ip": {
    1165611662                        "version": "4.3.0",
    1165711663                        "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz",
  • package.json

     
    5959                "grunt-sass": "~3.1.0",
    6060                "grunt-webpack": "^3.1.3",
    6161                "ink-docstrap": "1.3.2",
     62                "install-changed": "1.1.0",
    6263                "jquery-migrate": "1.4.1",
    6364                "matchdep": "~2.0.0",
    6465                "node-sass": "~4.13.1",
  • .