Skip to content

Commit 0a01679

Browse files
authored
Merge pull request #5 from Netcentric/develop
Release merge
2 parents b763a3b + 1649438 commit 0a01679

31 files changed

Lines changed: 10184 additions & 328 deletions

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,5 @@ jobs:
3939
with:
4040
languages: ${{ matrix.language }}
4141

42-
- run: npm run build --if-present
43-
4442
- name: Perform CodeQL Analysis
4543
uses: github/codeql-action/analyze@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Release
3131
uses: cycjimmy/semantic-release-action@v4
3232
with:
33-
dry_run: true
33+
dry_run: false
3434
extra_plugins: |
3535
@semantic-release/changelog
3636
@semantic-release/git

.gitignore

Lines changed: 146 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
logs
33
*.log
44

5+
56
# IDE
67
.project
78
.classpath
@@ -13,10 +14,6 @@ logs
1314
.vscode/
1415
.history
1516

16-
# OS
17-
.DS_Store
18-
*.swp
19-
2017
# Node related files
2118
node_modules/
2219
node/
@@ -25,8 +22,151 @@ typings
2522
npm-debug.log*
2623
yarn-debug.log*
2724
yarn-error.log*
28-
.stylelintcache
25+
lerna-debug.log*
26+
.pnpm-debug.log*
27+
28+
# Diagnostic reports (https://nodejs.org/api/report.html)
29+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
30+
31+
# Runtime data
32+
pids
33+
*.pid
34+
*.seed
35+
*.pid.lock
36+
37+
# Directory for instrumented libs generated by jscoverage/JSCover
38+
lib-cov
39+
40+
# Coverage directory used by tools like istanbul
41+
coverage
42+
*.lcov
43+
44+
# nyc test coverage
45+
.nyc_output
46+
47+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
48+
.grunt
49+
50+
# Bower dependency directory (https://bower.io/)
51+
bower_components
52+
53+
# node-waf configuration
54+
.lock-wscript
55+
56+
# Compiled binary addons (https://nodejs.org/api/addons.html)
57+
build/Release
58+
59+
# Dependency directories
60+
node_modules/
61+
jspm_packages/
62+
63+
# Snowpack dependency directory (https://snowpack.dev/)
64+
web_modules/
65+
66+
# TypeScript cache
67+
*.tsbuildinfo
68+
69+
# Optional npm cache directory
70+
.npm
71+
72+
# Optional eslint cache
2973
.eslintcache
3074

31-
# env
75+
# Optional stylelint cache
76+
.stylelintcache
77+
78+
# Microbundle cache
79+
.rpt2_cache/
80+
.rts2_cache_cjs/
81+
.rts2_cache_es/
82+
.rts2_cache_umd/
83+
84+
# Optional REPL history
85+
.node_repl_history
86+
87+
# Output of 'npm pack'
88+
*.tgz
89+
90+
# Yarn Integrity file
91+
.yarn-integrity
92+
93+
# dotenv environment variable files
3294
\.env
95+
.env
96+
.env.development.local
97+
.env.test.local
98+
.env.production.local
99+
.env.local
100+
101+
# parcel-bundler cache (https://parceljs.org/)
102+
.cache
103+
.parcel-cache
104+
105+
# Next.js build output
106+
.next
107+
out
108+
109+
# Nuxt.js build / generate output
110+
.nuxt
111+
dist
112+
113+
# Gatsby files
114+
.cache/
115+
# Comment in the public line in if your project uses Gatsby and not Next.js
116+
# https://nextjs.org/blog/next-9-1#public-directory-support
117+
# public
118+
119+
# vuepress build output
120+
.vuepress/dist
121+
122+
# vuepress v2.x temp and cache directory
123+
.temp
124+
.cache
125+
126+
# Docusaurus cache and generated files
127+
.docusaurus
128+
129+
# Serverless directories
130+
.serverless/
131+
132+
# FuseBox cache
133+
.fusebox/
134+
135+
# DynamoDB Local files
136+
.dynamodb/
137+
138+
# TernJS port file
139+
.tern-port
140+
141+
# Stores VSCode versions used for testing VSCode extensions
142+
.vscode-test
143+
144+
# yarn v2
145+
.yarn/cache
146+
.yarn/unplugged
147+
.yarn/build-state.yml
148+
.yarn/install-state.gz
149+
.pnp.*
150+
151+
/dist/*
152+
153+
# IDE files
154+
*.iml
155+
.idea/
156+
.vscode/
157+
.cursor/
158+
*.swp
159+
*.swo
160+
*~
161+
162+
# AEM connection and auth files
163+
.aem-connection.json
164+
.aem-oauth-tokens.json
165+
166+
# Backup directories
167+
.backup/
168+
169+
# Test files
170+
TEST_RESULTS.md
171+
INTERACTIVE_TESTING.md
172+
comprehensive-test.js

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22.16.0

0 commit comments

Comments
 (0)