Skip to content

Commit

Permalink
bump version to trigger first npm deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeBu committed Jul 3, 2024
1 parent abdebf3 commit 3c1a244
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
needs: test_lint
strategy:
matrix:
node: [ '16', '17' ]
os: [ windows-latest, ubuntu-latest ]
node: [ '20' ]
os: [ ubuntu-latest ]
name: Test with Node v${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "easy-lucia",
"version": "0.0.0",
"version": "0.0.1",
"description": "#{DESC}#",
"repository": {
"type": "git",
"url": "git://github.com/JeromeBu/easy-lucia.git"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc",
"build": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc",
"build:esm": "rm -rf dist/esm && tsc -p tsconfig.esm.json && js2mjs dist/esm",
"test": "vitest",
"lint:check": "eslint . --ext .ts,.tsx",
"lint": "npm run lint:check -- --fix",
Expand Down

0 comments on commit 3c1a244

Please sign in to comment.