-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: performance issue with toJSON() (#130)
* fix: performance issue with toJSON() This change also fixes: - test setup that wasn't working anymore - syntax errors in a couple of the tests - removes the old website build for now because it's reported as a vulnerability (we should try to figure this out in the typescript master branch) * Bump node version used by travis
- Loading branch information
Showing
8 changed files
with
2,653 additions
and
5,948 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
{ | ||
"presets": ["es2015", "stage-0"] | ||
} | ||
"presets": ["es2015", "stage-0"], | ||
"env": { | ||
"test": { | ||
"presets": [["env", { "modules": "commonjs" }]] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "5.6.0" | ||
- "10.15.0" | ||
notifications: | ||
email: false | ||
email: false | ||
before_install: | ||
- export TZ=America/Los_Angeles | ||
script: | ||
npm test -- --coverage | ||
script: npm test -- --coverage | ||
after_script: | ||
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js | ||
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,36 @@ | ||
{ | ||
"name": "pondjs", | ||
"version": "0.8.9", | ||
"main": "lib/entry", | ||
"types": "src/index.d.ts", | ||
"description": "A timeseries library build on top of immutable.js", | ||
"homepage": "http://software.es.net/pond", | ||
"scripts": { | ||
"lint": "eslint src website/modules/*.jsx", | ||
"test": "react-scripts test", | ||
"docs": "rm -f /src/website/docs/* && node ./scripts/renderdocs.js", | ||
"build": ". ./scripts/build.sh", | ||
"start-website": "react-scripts start", | ||
"build-website": "echo \"*** Building website\n\" && rm -rf docs && react-scripts build && mv build docs" | ||
}, | ||
"pre-commit": [ | ||
"build" | ||
], | ||
"license": "BSD-3-Clause-LBNL", | ||
"dependencies": { | ||
"babel-polyfill": "^6.9.1", | ||
"babel-runtime": "^6.5.0", | ||
"immutable": "^3.6.4", | ||
"immutable-devtools": "0.0.4", | ||
"moment": "^2.9.0", | ||
"underscore": "^1.8.2" | ||
}, | ||
"devDependencies": { | ||
"anybar-webpack": "^1.2.0", | ||
"babel-cli": "^6.5.1", | ||
"babel-core": "^6.5.2", | ||
"babel-eslint": "^6.0.0", | ||
"babel-plugin-transform-runtime": "^6.7.5", | ||
"babel-preset-es2015": "^6.6.0", | ||
"babel-preset-stage-0": "^6.5.0", | ||
"collect-json": "^1.0.8", | ||
"coveralls": "^2.11.12", | ||
"dmd": "^1.4.2", | ||
"eslint": "^1.10.0", | ||
"eslint-config-esnet": "^0.1.0", | ||
"eslint-plugin-babel": "^2.1.1", | ||
"eslint-plugin-react": "^3.9.0", | ||
"history": "^2.0.2", | ||
"jsdoc": "^3.4.0", | ||
"jsdoc-to-markdown": "^1.3.4", | ||
"pre-commit": "^1.1.2", | ||
"raw-loader": "^0.5.1", | ||
"react": "^0.14.3", | ||
"react-dom": "^0.14.3", | ||
"react-markdown": "^1.0.5", | ||
"react-router": "^2.2.4", | ||
"react-scripts": "0.4.1", | ||
"scroll-behavior": "^0.3.0" | ||
}, | ||
"keywords": [ | ||
"timeseries", | ||
"immutable" | ||
] | ||
"name": "pondjs", | ||
"version": "0.8.9", | ||
"main": "lib/entry", | ||
"types": "src/index.d.ts", | ||
"description": "A timeseries library build on top of immutable.js", | ||
"homepage": "http://software.es.net/pond", | ||
"scripts": { | ||
"test": "jest --testEnvironment node ", | ||
"build": ". ./scripts/build.sh" | ||
}, | ||
"license": "BSD-3-Clause-LBNL", | ||
"dependencies": { | ||
"babel-polyfill": "^6.9.1", | ||
"babel-runtime": "^6.5.0", | ||
"immutable": "^3.6.4", | ||
"immutable-devtools": "0.0.4", | ||
"moment": "^2.9.0", | ||
"underscore": "^1.8.2" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.26.0", | ||
"babel-core": "^6.23.1", | ||
"babel-jest": "^22.4.3", | ||
"babel-plugin-transform-runtime": "^6.23.0", | ||
"babel-preset-env": "^1.3.3", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"jest": "^22.0.0", | ||
"pre-commit": "^1.2.2" | ||
}, | ||
"keywords": [ | ||
"timeseries", | ||
"immutable" | ||
] | ||
} |
Oops, something went wrong.