Skip to content

Commit

Permalink
updating .babelrc
Browse files Browse the repository at this point in the history
  • Loading branch information
demskie committed Feb 15, 2020
1 parent 566ae93 commit 0b8b83c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"presets": ["@babel/typescript"],
"presets": ["@babel/typescript", ["@babel/env", { "modules": "commonjs" }]],
"plugins": [
[
"babel-plugin-static-fs",
Expand All @@ -8,6 +8,7 @@
"dynamic": false
}
],
"add-module-exports",
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
Expand Down
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gpu-sort",
"version": "0.0.1",
"description": "gpu accelerated stable sort",
"description": "gpu accelerated asynchronous sorting",
"main": "lib/index.js",
"scripts": {
"test": "tsc --noEmit && jest --runInBand",
Expand All @@ -15,10 +15,11 @@
"type": "git",
"url": "git+https://github.com/demskie/gpu-sort.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"lib/**/*",
"bench/**/*",
"test/**/*"
"lib/**/*"
],
"keywords": [
"sort",
Expand All @@ -35,7 +36,7 @@
],
"author": "Alex Demskie",
"license": "MIT",
"homepage": "https://demskie.github.io",
"homepage": "https://demskie.github.io/gpu-sort",
"bugs": {
"url": "https://github.com/demskie/gpu-sort/issues"
},
Expand Down Expand Up @@ -75,9 +76,6 @@
"collectCoverage": false,
"collectCoverageFrom": [
"!**/tests/**",
"!**/benchmarks/**",
"!**/*.bench.ts",
"!**/*.mock.ts",
"!**/node_modules/**",
"!**/vendor/**",
"**/*.ts"
Expand Down

0 comments on commit 0b8b83c

Please sign in to comment.