Skip to content

Commit 5ff7932

Browse files
Removed gulp premerge task (#2357)
1 parent 48fac3b commit 5ff7932

File tree

3 files changed

+6
-25
lines changed

3 files changed

+6
-25
lines changed

.travis.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ before_install:
1313
install:
1414
- npm ci
1515
before_script:
16-
- npm install -g gulp
17-
- gulp
18-
- gulp premerge
16+
# Rebuild Prism
17+
- npx gulp
18+
# Detect changes
19+
# First, we stage all changes and then detect if there is anything staged
20+
- git add --all && git diff-index --cached HEAD --stat --exit-code ||
21+
(echo && echo "The above files changed because the build is not up to date." && echo "Please rebuild Prism." && exit 1)
1922
script: npm test
2023
deploy:
2124
provider: npm

gulpfile.js/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const util = require('util');
1212
const fs = require('fs');
1313

1414
const paths = require('./paths');
15-
const { premerge } = require('./premerge');
1615
const { changes, linkify } = require('./changelog');
1716

1817

@@ -216,7 +215,6 @@ const plugins = series(languagePlugins, minifyPlugins);
216215
module.exports = {
217216
watch: watchComponentsAndPlugins,
218217
default: parallel(components, plugins, componentsJsonToJs, build),
219-
premerge,
220218
linkify,
221219
changes
222220
};

gulpfile.js/premerge.js

-20
This file was deleted.

0 commit comments

Comments
 (0)