Skip to content

Commit

Permalink
refactor: moving typings up in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
carere committed Nov 6, 2024
1 parent bbe073d commit a7c43be
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci-push-release-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
19 changes: 5 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <abatan.k@gmail.com> (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 .",
Expand Down

0 comments on commit a7c43be

Please sign in to comment.