-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: simplified api, uses Rollup javascript api
- Loading branch information
Harrison Ifeanyichukwu
authored and
Harrison Ifeanyichukwu
committed
Dec 10, 2019
1 parent
d1c0524
commit aaa1cac
Showing
19 changed files
with
2,221 additions
and
2,172 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,33 +1,10 @@ | ||
{ | ||
"env": { | ||
"test": { | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
], | ||
"@babel/preset-typescript", | ||
], | ||
"plugins": [ | ||
"@babel/plugin-transform-runtime", | ||
"@babel/proposal-class-properties", | ||
"@babel/proposal-object-rest-spread" | ||
] | ||
}, | ||
"build": { | ||
"presets": [ | ||
[ | ||
"@babel/env", | ||
{ | ||
"modules": false, | ||
} | ||
], | ||
"@babel/preset-typescript", | ||
], | ||
"plugins": [ | ||
"@babel/plugin-transform-runtime", | ||
"@babel/proposal-class-properties", | ||
"@babel/proposal-object-rest-spread" | ||
] | ||
} | ||
} | ||
} | ||
"presets": [["@babel/env"], "@babel/preset-typescript"], | ||
"plugins": [ | ||
"@babel/plugin-transform-runtime", | ||
"@babel/proposal-class-properties", | ||
"@babel/proposal-object-rest-spread", | ||
["@babel/plugin-proposal-nullish-coalescing-operator"], | ||
["@babel/plugin-proposal-optional-chaining"] | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
/node_modules | ||
/coverage | ||
/lib | ||
/lib | ||
/esm |
Oops, something went wrong.