Skip to content

Commit 2420a8d

Browse files
committed
Changed dependencies to peers + prepared CD
1 parent 7f8360e commit 2420a8d

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

.github/workflows/deploy-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Publish Storybook to GitHub Pages
1+
name: Deploy Storybook Docs
22
on:
33
push:
44
branches:

.github/workflows/publish.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Publish NPM Package
2+
on:
3+
release:
4+
types: [published]
5+
workflow_dispatch:
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: ./.github/actions/setup
12+
- name: Publish to NPM
13+
run: pnpm publish --access public --no-git-checks
14+
env:
15+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "solid-effect",
3-
"version": "1.0.0-beta.4",
3+
"version": "1.0.0",
44
"description": "A collection of utilities for working with EffectTS in SolidJS",
55
"type": "module",
66
"scripts": {
@@ -58,13 +58,13 @@
5858
"vite-plugin-solid": "^2.10.2",
5959
"vitest": "^2.1.2"
6060
},
61-
"dependencies": {
61+
"peerDependencies": {
6262
"effect": "^3.8.4",
6363
"solid-js": "^1.9.3"
6464
},
6565
"files": [
6666
"dist",
67-
"LICENCE-*"
67+
"LICENSE-*"
6868
],
6969
"main": "./dist/index.cjs",
7070
"module": "./dist/index.js",

0 commit comments

Comments
 (0)