Skip to content

Commit

Permalink
travis build failure (#209)
Browse files Browse the repository at this point in the history
* refactored styles of on/off switch component

* initial rollup introduction

* using single rollup config

* simpilfied single rollup config so that we can just do `rollup -c`

* refactoring metadata.scss styles out of global

* creating all -inclusive file for browser testing

* added browsersync

* minify css

* added autoprefixing

* custom asset copy

* custom asset using postcss-url

* custom asset using postcss-url with copy filter

* postcss-url with copy filter - final

* postcss npm targets

* adding browser-sync

* removing webpack and fixing source maps

* copying scss back into dist

* updated readme

* added package lock

* updated developer guide

* babel preset env instead of es2015, replacing pjantomjs with phantomjs-prebuild

* inputmask upgrade from jquery.inputMask

* rollup little bit simplification

* adding editorconfig back and fixing possibility that dist/folder may not exist before postcss

* fix inputmask after upgrade

* uglify umd only on production builds

* fixed publish.sh to copy dist for gh-pages deployment

* cbp-header header navigation explicit call to setupCBPHeader

* rollup args using environment vs yargs due to the warning

* inputmasks functions on its separate object on window

* fixing few accessibility but there are still too many to fix - candidate for separate PR

* local files must be imported as relative URLs

* called dev npm script to lint before clean and any of the other stuff as per PR review

* PR review typo in package.json and developer guide upgrade

* as per PR review updated bowsersync option and developer guide

* workaround for travis - rollup clearLine open issue jkuri/rollup-plugin-progress#1

* using pinned version for sourcemap
  • Loading branch information
yogeshgadge authored and davezen1 committed Apr 12, 2018
1 parent 365bcf4 commit cd563b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/rollup-config-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export function getRollupConfig(options) {
Array.prototype.push.apply(config.plugins, options.plugins);
}

config.plugins.push(progress({clearLine: !options.debug}))
config.plugins.push(progress({clearLine: process.env.production ? false : true}))
config.plugins.push(filesize())
return config;
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"rollup-plugin-progress": "0.4.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-sass": "0.6.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-uglify": "3.0.0",
"rollup-watch": "4.3.1",
"select2": "4.0.3",
Expand Down

0 comments on commit cd563b1

Please sign in to comment.