Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Use Node.js from .nvmrc
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- run: corepack enable
- run: yarn install
- run: yarn lint-test

Expand All @@ -22,8 +23,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Use Node.js from .nvmrc
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- run: corepack enable
- run: yarn install
- run: yarn build
3 changes: 2 additions & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
registry-url: https://registry.npmjs.org/
- run: corepack enable
- run: yarn
- run: yarn lint-test
- run: yarn build
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ typings/
# Output of 'npm pack'
*.tgz

# Yarn Integrity file
# Yarn files
.yarn-integrity
.yarn

# dotenv environment variables file
.env
Expand Down
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"name": "hawk.javascript",
"type": "module",
"version": "0.0.0",
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*"
],
Expand All @@ -23,7 +24,6 @@
"eslint-config-codex": "^1.6.1",
"rollup-plugin-license": "^3.5.3",
"size-limit": "^11.1.6",
"typescript": "^5.6.3",
"vite": "^5.4.9"
"typescript": "^5.9.3"
}
}
1 change: 1 addition & 0 deletions packages/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"devDependencies": {
"@hawk.so/types": "0.5.2",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.2.4",
"vue": "^2"
}
Expand Down
4 changes: 4 additions & 0 deletions packages/sveltekit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@
"homepage": "https://github.com/codex-team/hawk.javascript#readme",
"dependencies": {
"@hawk.so/javascript": "^3.0.0"
},
"devDependencies": {
"vite": "^7.3.1",
"vite-plugin-dts": "^4.2.4"
}
}
8,421 changes: 5,300 additions & 3,121 deletions yarn.lock

Large diffs are not rendered by default.

Loading