From b280cae12a3991f5c5ffee41f8a1642b5341731c Mon Sep 17 00:00:00 2001 From: Nick Spaargaren Date: Wed, 11 Dec 2024 17:02:43 +0100 Subject: [PATCH 1/2] Fix installation packages without npm installation --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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", From 6252253cc0447f40458fdd783e5481f90fa5bce5 Mon Sep 17 00:00:00 2001 From: Nick Spaargaren Date: Wed, 11 Dec 2024 17:02:49 +0100 Subject: [PATCH 2/2] Update changelog with release 2.13.2 - Fix install packages without `npm` installation --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) 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)