Skip to content

Commit 58a0480

Browse files
committed
feat: deploy
1 parent 38588bb commit 58a0480

File tree

804 files changed

+8871
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

804 files changed

+8871
-66
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- name: Use Node.js
1313
uses: actions/setup-node@v2
1414
with:
15-
node-version: '18.x'
15+
node-version: '22.x'
1616

1717
- name: Install dependencies
18-
run: yarn
18+
run: yarn install --immutable
1919

2020
- name: Run lint
2121
run: yarn lint

.github/workflows/deploy-npm.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup Node
3838
uses: actions/setup-node@v2
3939
with:
40-
node-version: '18.x'
40+
node-version: '22.x'
4141
registry-url: 'https://registry.npmjs.org'
4242

4343
# Cache dependencies
@@ -52,7 +52,7 @@ jobs:
5252
# Install project dependencies
5353
- name: Install Dependencies
5454
if: steps.cache.outputs.cache-hit != 'true'
55-
run: yarn
55+
run: yarn install --immutable
5656

5757
# Build the project
5858
- name: Build
@@ -64,6 +64,11 @@ jobs:
6464
echo "registry=https://registry.npmjs.org/" >> .npmrc
6565
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
6666
67+
- name: Changes
68+
run: |
69+
git status
70+
git diff
71+
6772
# Release and publish version
6873
- name: Release version
6974
run: NPM_TOKEN="${{ secrets.NPM_TOKEN }}" yarn release --ci --npm.skipChecks
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{{#if noteGroups}}
2+
{{#each noteGroups}}
3+
4+
### {{title}}
5+
6+
{{#each notes}}
7+
* {{#if commit.scope}}**{{commit.scope}}:** {{/if}}{{text}}
8+
{{/each}}
9+
{{/each}}
10+
11+
{{/if}}
12+
[View diff](
13+
{{~#if @root.repository~}}
14+
{{~#if @root.host}}
15+
{{~@root.host}}/
16+
{{~/if}}
17+
{{~#if @root.owner}}
18+
{{~@root.owner}}/
19+
{{~/if}}
20+
{{~@root.repository}}
21+
{{~else}}
22+
{{~@root.repoUrl}}
23+
{{~/if~}}
24+
/compare/{{previousTag}}...{{currentTag}}
25+
)

.gitignore

Lines changed: 71 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,73 @@
1-
node_modules
1+
# OS
22
.DS_Store
3-
.tmp
4-
tmp
5-
dist
3+
4+
# IDEs
5+
.idea
6+
7+
# Logs
8+
logs
9+
*.log
610
npm-debug.log*
7-
yarn.lock
8-
.vscode/launch.json
11+
yarn-debug.log*
12+
yarn-error.log*
13+
lerna-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17+
18+
# Runtime data
19+
pids
20+
*.pid
21+
*.seed
22+
*.pid.lock
23+
24+
# Directory for instrumented libs generated by jscoverage/JSCover
25+
lib-cov
26+
27+
# Coverage directory used by tools like istanbul
28+
coverage
29+
*.lcov
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# Optional eslint cache
42+
.eslintcache
43+
44+
# Optional REPL history
45+
.node_repl_history
46+
47+
# Yarn
48+
.yarn/*
49+
!.yarn/releases
50+
!.yarn/plugins
51+
.yarn-integrity
52+
.pnp.*
53+
54+
# npm
55+
.npm
56+
.npmrc
57+
package-lock.json
58+
59+
# dotenv environment variables file
60+
.env
61+
.env.test
62+
63+
# Cache
64+
.cache
65+
66+
# Build
67+
build
68+
dist
69+
70+
# Other
71+
*.tgz
72+
*.iml
73+
*.map

.npmignore

Lines changed: 0 additions & 50 deletions
This file was deleted.
-80 KB
Binary file not shown.
-33.7 KB
Binary file not shown.
-68.7 KB
Binary file not shown.
-802 KB
Binary file not shown.
-558 KB
Binary file not shown.

0 commit comments

Comments
 (0)