diff --git a/.github/workflows/ci-push-release-branches.yml b/.github/workflows/ci-push-release-branches.yml index 94b1eb5..aaf8b60 100644 --- a/.github/workflows/ci-push-release-branches.yml +++ b/.github/workflows/ci-push-release-branches.yml @@ -13,6 +13,11 @@ jobs: with: fetch-depth: 0 + - name: Install Node.js + uses: actions/setup-node@v4 + with: + node-version: "lts/*" + - name: Install Bun uses: oven-sh/setup-bun@v2 diff --git a/package.json b/package.json index 720b260..22bf486 100644 --- a/package.json +++ b/package.json @@ -2,31 +2,22 @@ "name": "@carere/solux", "version": "3.3.1", "description": "Flux implementation based on SolidJs reactivity", - "keywords": [ - "Solid", - "flux", - "redux", - "rxjs", - "state" - ], + "keywords": ["Solid", "flux", "redux", "rxjs", "state"], "bugs": "https://github.com/carere/solux/issues", "repository": "github:carere/solux", "license": "MIT", "author": "Kevin Abatan (https://github.com/carere)", "exports": { ".": { + "types": "./dist/index.d.ts", "require": "./dist/index.js", - "import": "./dist/index.mjs", - "types": "./dist/index.d.ts" + "import": "./dist/index.mjs" } }, + "typings": "./dist/index.d.ts", "main": "./dist/index.js", "module": "./dist/index.mjs", - "typings": "./dist/index.d.ts", - "files": [ - "src", - "dist" - ], + "files": ["src", "dist"], "scripts": { "build": "tsup", "format": "biome format --write .",