Skip to content

Commit

Permalink
Changed dependencies to peers + prepared CD
Browse files Browse the repository at this point in the history
  • Loading branch information
JonahPlusPlus committed Nov 14, 2024
1 parent 7f8360e commit 2420a8d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Publish Storybook to GitHub Pages
name: Deploy Storybook Docs
on:
push:
branches:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Publish NPM Package
on:
release:
types: [published]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Publish to NPM
run: pnpm publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-effect",
"version": "1.0.0-beta.4",
"version": "1.0.0",
"description": "A collection of utilities for working with EffectTS in SolidJS",
"type": "module",
"scripts": {
Expand Down Expand Up @@ -58,13 +58,13 @@
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.1.2"
},
"dependencies": {
"peerDependencies": {
"effect": "^3.8.4",
"solid-js": "^1.9.3"
},
"files": [
"dist",
"LICENCE-*"
"LICENSE-*"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
Expand Down

0 comments on commit 2420a8d

Please sign in to comment.