Skip to content

Commit

Permalink
Removed gulp premerge task (#2357)
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Jun 12, 2020
1 parent 48fac3b commit 5ff7932
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 25 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Expand Up @@ -13,9 +13,12 @@ before_install:
install:
- npm ci
before_script:
- npm install -g gulp
- gulp
- gulp premerge
# Rebuild Prism
- npx gulp
# Detect changes
# First, we stage all changes and then detect if there is anything staged
- git add --all && git diff-index --cached HEAD --stat --exit-code ||
(echo && echo "The above files changed because the build is not up to date." && echo "Please rebuild Prism." && exit 1)
script: npm test
deploy:
provider: npm
Expand Down
2 changes: 0 additions & 2 deletions gulpfile.js/index.js
Expand Up @@ -12,7 +12,6 @@ const util = require('util');
const fs = require('fs');

const paths = require('./paths');
const { premerge } = require('./premerge');
const { changes, linkify } = require('./changelog');


Expand Down Expand Up @@ -216,7 +215,6 @@ const plugins = series(languagePlugins, minifyPlugins);
module.exports = {
watch: watchComponentsAndPlugins,
default: parallel(components, plugins, componentsJsonToJs, build),
premerge,
linkify,
changes
};
20 changes: 0 additions & 20 deletions gulpfile.js/premerge.js

This file was deleted.

0 comments on commit 5ff7932

Please sign in to comment.