Skip to content

Commit

Permalink
Bump dependencies (#82)
Browse files Browse the repository at this point in the history
* move to puppeteer

* remove dependency resolution, i think it isnt needed

* Remove old server concept from before this project became library, it used to be its own server app.  Today it supports o19s/splainer and o19s/quepid, so it no longer runs as a server or a heroku deployed app

* npm remove npm cracks me up. seems to not negatively impact anything

* bump version to avoid annoying deprecation warning

* more dependencies from when this was an app not a lib
  • Loading branch information
epugh authored Apr 16, 2020
1 parent 0241bf7 commit e18de13
Show file tree
Hide file tree
Showing 9 changed files with 429 additions and 5,406 deletions.
2 changes: 0 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ services
test
values
.travis.yml
app.js
Gruntfile.js
index.html
karma.conf.js
karma.debug.conf.js
module.js
server.js
1 change: 0 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ module.exports = function(grunt) {
unit: {
configFile: 'karma.conf.js',
singleRun: true,
browsers: ['PhantomJS']
},
debug: {
configFile: 'karma.debug.conf.js',
Expand Down
32 changes: 0 additions & 32 deletions app.js

This file was deleted.

40 changes: 0 additions & 40 deletions index.html

This file was deleted.

16 changes: 12 additions & 4 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// Generated on 2014-07-17 using
// generator-karma 0.8.3

process.env.CHROME_BIN = require('puppeteer').executablePath();

module.exports = function(config) {
'use strict';

Expand Down Expand Up @@ -44,15 +46,21 @@ module.exports = function(config) {
// - PhantomJS
// - IE (only Windows)
browsers: [
'PhantomJS'
'ChromeHeadlessNoSandbox'
],

customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox', '--headless']
}
},

// Which plugins to enable
plugins: [
'karma-coverage',
'karma-phantomjs-launcher',
'karma-chrome-launcher',
'karma-jasmine'
'karma-jasmine',
'karma-coverage'
],

preprocessors: {
Expand Down
15 changes: 12 additions & 3 deletions karma.debug.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// Generated on 2014-07-17 using
// generator-karma 0.8.3

process.env.CHROME_BIN = require('puppeteer').executablePath();

module.exports = function(config) {
'use strict';

Expand Down Expand Up @@ -44,14 +46,21 @@ module.exports = function(config) {
// - PhantomJS
// - IE (only Windows)
browsers: [
'Chrome'
'ChromeHeadlessNoSandbox'
],

customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox', '--headless']
}
},

// Which plugins to enable
plugins: [
'karma-phantomjs-launcher',
'karma-chrome-launcher',
'karma-jasmine'
'karma-jasmine',
'karma-coverage'
],

// Continuous Integration mode
Expand Down
Loading

0 comments on commit e18de13

Please sign in to comment.