Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
adds browserify step in correct order
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher McCulloh committed Nov 4, 2016
1 parent d870058 commit 62cbf99
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ node_js:
sudo: false
install:
- time npm install
- phantomjs --version
- ./node_modules/grunt-contrib-qunit/node_modules/.bin/phantomjs --version
- alias phantomjs='./node_modules/grunt-contrib-qunit/node_modules/.bin/phantomjs'
- phantomjs --version
- time ./node_modules/bower/bin/bower update
env:
global:
Expand Down
2 changes: 1 addition & 1 deletion grunt/tasks/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function test (grunt) {
['connect:testServer', 'jshint', 'saucelabs-qunit:defaultBrowsers']);

grunt.registerTask('travisci', 'Tests to run when in Travis CI environment',
['test', 'dist', 'browserify:commonjs', 'qunit:dist']);
['browserify:commonjs', 'test', 'dist', 'qunit:dist']);

// if you've already accidentally added your files for commit, this will at least unstage them. If you haven't, this will wipe them out.
grunt.registerTask('resetdist', 'resets changes to dist to keep them from being checked in', function resetdist () {
Expand Down

0 comments on commit 62cbf99

Please sign in to comment.