Skip to content

Commit b042f3d

Browse files
committed
add build scripts
1 parent d969e5d commit b042f3d

26 files changed

+156
-7134
lines changed

.dockerignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,24 @@ pnpm-lock.yaml
2121
# OS
2222
.DS_Store
2323
Thumbs.db
24+
25+
# Git
26+
.git/
27+
.gitignore
28+
29+
# Testing
30+
coverage/
31+
.nyc_output/
32+
33+
# Temporary files
34+
*.tmp
35+
*.temp
36+
.cache/
37+
38+
# Package artifacts
39+
*.zip
40+
*.tar.gz
41+
42+
# Spec files
43+
specs/
44+
.specify/

.eslintignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# ESLint ignore patterns for Grafana plugin
2+
# Ignore build outputs and dependencies
3+
4+
# Dependencies
5+
node_modules/
6+
7+
# Build outputs
8+
dist/
9+
build/
10+
*.tsbuildinfo
11+
12+
# Testing
13+
coverage/
14+
.nyc_output/
15+
16+
# Minified files
17+
*.min.js
18+
*.min.css
19+
20+
# Package files
21+
*.zip
22+
*.tar.gz
23+
24+
# Logs
25+
*.log
26+
logs/
27+
28+
# Cache
29+
.cache/
30+
.eslintcache
31+
32+
# IDE
33+
.vscode/
34+
.idea/
35+
36+
# OS
37+
.DS_Store
38+
Thumbs.db

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,11 @@ coverage/
4242
*.tmp
4343
*.temp
4444
.cache/
45+
46+
# Package artifacts
47+
*.zip
48+
*.tar.gz
49+
50+
# Spec files
51+
specs/
52+
.specify/

.npmignore

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# NPM ignore patterns for publishing
2+
# These files are excluded from the npm package
3+
4+
# Source files (only dist/ should be published)
5+
src/
6+
specs/
7+
tests/
8+
scripts/
9+
10+
# Configuration files
11+
.config/
12+
.github/
13+
.vscode/
14+
.idea/
15+
.specify/
16+
17+
# Build configuration
18+
webpack.config.ts
19+
tsconfig.json
20+
jest.config.js
21+
22+
# Docker files
23+
docker-compose.yml
24+
Dockerfile*
25+
.dockerignore
26+
27+
# Git files
28+
.git/
29+
.gitignore
30+
.gitattributes
31+
32+
# CI/CD
33+
.github/
34+
35+
# Documentation (except README in dist)
36+
*.md
37+
!dist/README.md
38+
39+
# Lock files
40+
package-lock.json
41+
yarn.lock
42+
pnpm-lock.yaml
43+
44+
# Logs
45+
*.log
46+
logs/
47+
48+
# Testing
49+
coverage/
50+
.nyc_output/
51+
52+
# Temporary files
53+
*.tmp
54+
*.temp
55+
.cache/
56+
57+
# OS files
58+
.DS_Store
59+
Thumbs.db
60+
61+
# IDE
62+
*.swp
63+
*.swo
64+
*~

.prettierignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Prettier ignore patterns for Grafana plugin
2+
3+
# Dependencies
4+
node_modules/
5+
6+
# Build outputs
7+
dist/
8+
build/
9+
10+
# Lock files
11+
package-lock.json
12+
yarn.lock
13+
pnpm-lock.yaml
14+
15+
# Testing
16+
coverage/
17+
18+
# Logs
19+
*.log
20+
21+
# Generated files
22+
*.tsbuildinfo
23+
24+
# Package files
25+
*.zip

.specify/memory/constitution.md

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

0 commit comments

Comments
 (0)