Skip to content

Commit

Permalink
Update modules and dependencies, change to jsbi
Browse files Browse the repository at this point in the history
* Drop gulp support
* Migrate long.js to JSBI library (for long math)
* Update karma targets
  • Loading branch information
bacher09 committed May 29, 2020
1 parent 0fef378 commit b99bdd7
Show file tree
Hide file tree
Showing 16 changed files with 6,110 additions and 7,213 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.*.sw[po]
*.py[co]
*.bak
.nyc_output/
upload/
build/
temp/
typings/
typings.json
node_modules/
dist/
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sudo: false
dist: trusty
language: node_js
node_js:
- '8'
- '14'
env:
matrix:
- SAUCE=true
Expand All @@ -18,7 +18,7 @@ script:
- npm run browser-test
- npm run lint
after_sucess:
- ci/coveralls.sh
- npm run send-coverage
git:
depth: 1
submodules: false
Expand Down
2 changes: 0 additions & 2 deletions ci/coveralls.sh

This file was deleted.

2 changes: 0 additions & 2 deletions externs/googleAnalytics.js

This file was deleted.

17 changes: 0 additions & 17 deletions externs/performance.js

This file was deleted.

159 changes: 0 additions & 159 deletions externs/webassembly.js

This file was deleted.

92 changes: 0 additions & 92 deletions gulpfile.js

This file was deleted.

13 changes: 13 additions & 0 deletions jasmine.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"reporters": [{
"name": "jasmine-spec-reporter#SpecReporter",
"options": {
"displayStacktrace": "all"
}
}],
"spec_dir": "src",
"spec_files": ["**/*.spec.ts"],
"helpers": [
"./node_modules/babel-register/lib/node.js"
]
}
38 changes: 6 additions & 32 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,52 +1,26 @@
module.exports = function(config) {

var customLaunchers = {
sl_ie_10: {
base: "SauceLabs",
browserName: "internet explorer",
platform: "Windows 7",
version: "10"
},
sl_safari_7: {
base: "SauceLabs",
browserName: "safari",
platform: "OS X 10.10",
version: "8.0"
},
sl_ios_safari: {
base: 'SauceLabs',
browserName: 'safari',
platform: 'iOS',
deviceName: 'iPhone 6 Simulator',
deviceName: 'iPhone 7 Simulator',
version: '10.3',
deviceOrientation: 'portrait'
},
sl_android: {
base: "SauceLabs",
browserName: 'Browser',
patform: 'Android',
version: '5.1',
deviceName: 'Android Emulator',
deviceOrientation: 'portrait'
},
sl_chrome_41: {
base: "SauceLabs",
browserName: 'chrome',
platform: 'Linux',
version: '41'
},
sl_firefox_8: {
sl_safari_7: {
base: "SauceLabs",
browserName: 'firefox',
platform: 'Linux',
version: '8.0'
browserName: "safari",
platform: "OS X 10.11",
version: "10.0"
},
sl_edge_13: {
base: "SauceLabs",
browserName: 'MicrosoftEdge',
platform: 'Windows 10',
version: '13.10586'
},
},
ChromeHeadlessTravis: {
base: "ChromeHeadless",
flags: ['--no-sandbox']
Expand Down
Loading

0 comments on commit b99bdd7

Please sign in to comment.