Skip to content
This repository has been archived by the owner on Dec 22, 2022. It is now read-only.

Commit

Permalink
TASK: Prepare v3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
grebaldi committed Dec 21, 2022
1 parent 6411a02 commit d82eb78
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
11 changes: 1 addition & 10 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
{
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": { "version": "3", "proposals": false }
}
]
],
"plugins": []
"presets": ["@babel/preset-env"]
}
13 changes: 12 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
.gitignore
.babelrc
.editorconfig
.eslintrc
.github/
.gitignore
.nvmrc
**/*.spec.js
docs/
node_modules/
src/
styles/
SUMMARY.md
test/
pnpm-lock.yaml
rollup.*.js
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plow-js",
"version": "2.2.0",
"version": "3.0.0",
"description": "Functional operations on large immutable objects",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -34,7 +34,7 @@
"url": "https://github.com/grebaldi/plow-js.git"
},
"browserslist": [
"defaults",
"last 2 versions",
"not IE 11",
"maintained node versions"
]
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.build.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export default {
file: "dist/index.js",
format: "umd",
},
plugins: [babel(), nodeResolve()],
plugins: [babel({ babelHelpers: "bundled" }), nodeResolve()],
};

0 comments on commit d82eb78

Please sign in to comment.