Skip to content

Commit

Permalink
Simplify babel again, workarounds no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
zewish committed Nov 24, 2023
1 parent 2966178 commit 7a38bea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 75 deletions.
70 changes: 0 additions & 70 deletions babel-build.mjs

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redux-remember",
"version": "4.2.1",
"version": "4.2.2",
"description": "Saves and loads your redux state from a key-value store of your choice",
"author": "Iskren Slavov <[email protected]>",
"license": "MIT",
Expand All @@ -25,8 +25,8 @@
"clean": "rimraf -V es lib dist",
"typecheck": "tsc --noEmit",
"build:umd": "rollup -c ./rollup.config.ts --configPlugin rollup-plugin-ts",
"build:lib": "node ./babel-build.mjs lib",
"build:es": "node ./babel-build.mjs es",
"build:lib": "BABEL_ENV=lib babel --extensions '.ts' src --source-maps --out-dir lib",
"build:es": "BABEL_ENV=es babel --extensions '.ts' src --source-maps --out-dir es",
"build:types": "tsc --pretty --declaration --declarationMap --emitDeclarationOnly --outDir types && rimraf -V ./types/__tests__",
"build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:types",
"prepare": "npm run clean && npm run typecheck && npm run test && npm run build",
Expand Down

0 comments on commit 7a38bea

Please sign in to comment.