Skip to content

Commit

Permalink
feat: simplified api, uses Rollup javascript api
Browse files Browse the repository at this point in the history
  • Loading branch information
Harrison Ifeanyichukwu authored and Harrison Ifeanyichukwu committed Dec 10, 2019
1 parent d1c0524 commit aaa1cac
Show file tree
Hide file tree
Showing 19 changed files with 2,221 additions and 2,172 deletions.
41 changes: 9 additions & 32 deletions .babelrc
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"]
]
}
29 changes: 0 additions & 29 deletions .buildrc.js

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules
/coverage
/lib
/lib
/esm
Loading

0 comments on commit aaa1cac

Please sign in to comment.