Skip to content

Commit

Permalink
Merge pull request #12445 from timvandermeij/packages
Browse files Browse the repository at this point in the history
Upgrade minor/major versions of dependencies that don't require code changes
  • Loading branch information
timvandermeij authored Oct 4, 2020
2 parents 910772c + 505f14e commit a1028e2
Show file tree
Hide file tree
Showing 3 changed files with 526 additions and 264 deletions.
8 changes: 5 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
var autoprefixer = require("autoprefixer");
var calc = require("postcss-calc");
var cssvariables = require("postcss-css-variables");
var fancylog = require("fancy-log");
var fs = require("fs");
var gulp = require("gulp");
var postcss = require("gulp-postcss");
Expand Down Expand Up @@ -1962,11 +1961,14 @@ gulp.task(
);

gulp.task("externaltest", function (done) {
fancylog("Running test-fixtures.js");
console.log();
console.log("### Running test-fixtures.js");
safeSpawnSync("node", ["external/builder/test-fixtures.js"], {
stdio: "inherit",
});
fancylog("Running test-fixtures_esprima.js");

console.log();
console.log("### Running test-fixtures_esprima.js");
safeSpawnSync("node", ["external/builder/test-fixtures_esprima.js"], {
stdio: "inherit",
});
Expand Down
Loading

0 comments on commit a1028e2

Please sign in to comment.