diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c5dd7e..0133bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.13.2 (2024-12-11) + +### Bug Fixes + +* Fix install packages without `npm` installation + # [2.13.0](https://github.com/theKashey/react-focus-lock/compare/v2.12.0...v2.13.0) (2024-08-25) diff --git a/package.json b/package.json index 30f299c..3f5475a 100644 --- a/package.json +++ b/package.json @@ -15,9 +15,9 @@ "build:cjs": "NODE_ENV=cjs babel src -d dist/cjs", "build:es5": "NODE_ENV=es2015 babel src -d dist/es2015", "build": "rm -Rf ./dist && yarn build:es5 && yarn build:cjs && yarn build:dts", - "test": "npm run test:pick -- '_tests/**/*spec.js'", + "test": "yarn test:pick -- '_tests/**/*spec.js'", "test:pick": "NODE_ENV=cjs mocha --require @babel/register --require global-jsdom/register --require _tests/spinup/scaffolding --exit", - "prepublish": "npm run lint:fix && npm run build && npm run changelog", + "prepublish": "yarn lint:fix && yarn build && yarn changelog", "lint": "eslint src", "lint:fix": "eslint src --fix", "storybook": "NODE_ENV=es2015 start-storybook -p 6006",