Skip to content

Commit f93fdf4

Browse files
committed
ci: reattach js to semrel
1 parent ed18225 commit f93fdf4

File tree

3 files changed

+169
-27
lines changed

3 files changed

+169
-27
lines changed

.github/workflows/jsr-publish.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.gitignore

Lines changed: 169 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,169 @@
1-
/node_modules/
2-
package-lock.json
1+
# IDEs
2+
.idea
3+
4+
# Credentials
5+
**/*.asc
6+
**/*.key
7+
**/*.pem
8+
**/*.cert
9+
**/.npmrc
10+
**/.yarnrc
11+
12+
# Bundles
13+
bundle
14+
build
15+
buildstamp.json
16+
dist
17+
docs
18+
flow-typed
19+
lib
20+
target/*
21+
!target/cjs/
22+
!target/esm/
23+
!target/dts/
24+
typings
25+
jsr.json
26+
27+
# Temp assets
28+
.temp
29+
temp
30+
31+
# Codeclimate
32+
codeclimate.*
33+
cc-reporter
34+
cc-reporter.*
35+
36+
# Logs
37+
logs
38+
*.log
39+
npm-debug.log*
40+
yarn-debug.log*
41+
yarn-error.log*
42+
lerna-debug.log*
43+
.pnpm-debug.log*
44+
45+
# Diagnostic reports (https://nodejs.org/api/report.html)
46+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
47+
48+
# Runtime data
49+
pids
50+
*.pid
51+
*.seed
52+
*.pid.lock
53+
54+
# Directory for instrumented libs generated by jscoverage/JSCover
55+
lib-cov
56+
57+
# Coverage directory used by tools like istanbul
58+
coverage
59+
coverage.*
60+
*.lcov
61+
62+
# nyc test coverage
63+
.nyc_output
64+
65+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
66+
.grunt
67+
68+
# Bower dependency directory (https://bower.io/)
69+
bower_components
70+
71+
# node-waf configuration
72+
.lock-wscript
73+
74+
# Compiled binary addons (https://nodejs.org/api/addons.html)
75+
build/Release
76+
77+
# Dependency directories
78+
node_modules/
79+
jspm_packages/
80+
81+
# Snowpack dependency directory (https://snowpack.dev/)
82+
web_modules/
83+
84+
# TypeScript cache
85+
*.tsbuildinfo
86+
.tsbuildinfo
87+
buildcache
88+
.buildcache
89+
90+
# Optional npm cache directory
91+
.npm
92+
93+
# Optional eslint cache
94+
.eslintcache
95+
96+
# Optional stylelint cache
97+
.stylelintcache
98+
99+
# Microbundle cache
100+
.rpt2_cache/
101+
.rts2_cache_cjs/
102+
.rts2_cache_es/
103+
.rts2_cache_umd/
104+
105+
# Optional REPL history
106+
.node_repl_history
107+
108+
# Output of 'npm pack'
109+
*.tgz
110+
111+
# Yarn Integrity file
112+
.yarn-integrity
113+
114+
# dotenv environment variable files
115+
.env
116+
.env.development.local
117+
.env.test.local
118+
.env.production.local
119+
.env.local
120+
121+
# parcel-bundler cache (https://parceljs.org/)
122+
.cache
123+
.parcel-cache
124+
125+
# Next.js build output
126+
.next
127+
out
128+
129+
# Nuxt.js build / generate output
130+
.nuxt
131+
dist
132+
133+
# Gatsby files
134+
.cache/
135+
# Comment in the public line in if your project uses Gatsby and not Next.js
136+
# https://nextjs.org/blog/next-9-1#public-directory-support
137+
# public
138+
139+
# vuepress build output
140+
.vuepress/dist
141+
142+
# vuepress v2.x temp and cache directory
143+
.temp
144+
.cache
145+
146+
# Docusaurus cache and generated files
147+
.docusaurus
148+
149+
# Serverless directories
150+
.serverless/
151+
152+
# FuseBox cache
153+
.fusebox/
154+
155+
# DynamoDB Local files
156+
.dynamodb/
157+
158+
# TernJS port file
159+
.tern-port
160+
161+
# Stores VSCode versions used for testing VSCode extensions
162+
.vscode-test
163+
164+
# yarn v2
165+
.yarn/cache
166+
.yarn/unplugged
167+
.yarn/build-state.yml
168+
.yarn/install-state.gz
169+
.pnp.*

jsr.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)