Skip to content

Commit

Permalink
chore(build): add package-lock.json (#1184)
Browse files Browse the repository at this point in the history
* chore(build): add package-lock.json

* chore(deps): bump packages

* chore(build): fix stylelint

* chore(deps): downgrade chromy

* fix(backstop): change report path for CI
  • Loading branch information
redallen authored and dgutride committed Aug 30, 2019
1 parent d6d3152 commit f522533
Show file tree
Hide file tree
Showing 16 changed files with 18,873 additions and 28 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
*.sublime-workspace
*.sublime-project
*.idea
package-lock.json

# Ignore vim files
*.swp
Expand Down
2 changes: 1 addition & 1 deletion backstop/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ try {

} catch (e) {
const requireAll = require('require-all');
const reportTypes = (process.env.NODE_ENV === 'test') ? ['CI'] : ['browser'];
const reportTypes = process.env.CI ? ['CI'] : ['browser'];
let scenarioConfigs = requireAll(`${__dirname}/scenarios`);
let scenariosToLoad = [];

Expand Down
Loading

0 comments on commit f522533

Please sign in to comment.