File tree Expand file tree Collapse file tree 4 files changed +45
-53
lines changed
Expand file tree Collapse file tree 4 files changed +45
-53
lines changed Original file line number Diff line number Diff line change 1- # Source TypeScript files
2- src /** /*
3-
4- # Assets (exclude all except required icon)
5- src /assets /** /*
6- ! src /assets /images /icon.png
7- ! src /assets /images /preview.gif
8- ! src /assets /images /coverage-report-text.png
9-
10- # TypeScript config
11- tsconfig.json
1+ # Security: Exclude coverage files that expose development paths
2+ coverage /
3+ * .lcov
4+ lcov-report /
125
13- # Development tools
14- .biomeignore
6+ # Build artifacts and development files
7+ .vscodeignore
8+ .gitignore
9+ .gitattributes
10+ .cursorignore
1511.cursorrules
1612biome.json
17- .vscode /
18- .gitignore
19-
20- # Test files
21- ** /* .test.ts
22- ** /* .test.js
23- ** /__tests__ /**
24- ** /__data__ /**
25- test-files /**
26-
13+ codecov.yml
14+ package-lock.json
15+ bun.lock
16+ tsconfig.json
17+ vitest.config.ts
2718
28- # Backup files
29- * .backup
30- * -original. *
19+ # Development directories
20+ .github /
21+ docs /
22+ test /
23+ scripts /
3124
32- # Exclude all node_modules except runtime dependencies
33- node_modules /**
34- ! node_modules /csv-parse /package.json
35- ! node_modules /csv-parse /LICENSE
36- ! node_modules /csv-parse /dist /cjs /**
37- ! node_modules /csv-parse /lib /**
38- ! node_modules /ini /**
39- ! node_modules /js-yaml /package.json
40- ! node_modules /js-yaml /LICENSE
41- ! node_modules /js-yaml /index.js
42- ! node_modules /js-yaml /lib /**
43- ! node_modules /toml /**
44- ! node_modules /vscode-nls /**
45- ! node_modules /@types /js-yaml /**
25+ # Source files (only include compiled dist/)
26+ src /
27+ ! src /assets /images /preview.gif
28+ ! src /assets /images /icon.png
29+ src /** /* .test.ts
30+ src /** /* .bench.ts
4631
47- # Coverage and logs
48- coverage /
49- * .log
50- .nyc_output /
32+ # Build artifacts
33+ dist /** /* .js.map
34+ dist /__mocks__ /
5135
52- # Documentation that's not needed in the package
53- * .md
54- ! README.md
55- ! CHANGELOG.md
36+ # Environment files
37+ .env
38+ .env. *
39+ ! .env.example
5640
57- # CI and repository metadata
58- .github / **
59- .vscodeignore
41+ # Sample/demo files
42+ sample /
43+ README-STRINGLE.md
6044
61- # Package lock
62- package-lock.json
45+ # Node modules (will be bundled)
46+ node_modules /
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to the "Numbers-LE" extension will be documented in this fil
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.4.6] - 2025-10-16
9+
10+ ### Technical
11+
12+ - ** Code quality maintenance** - Ran lint: fix to ensure code quality standards
13+ - ** Package generation** - Created fresh extension package (numbers-le-1.4.6.vsix)
14+ - ** Build verification** - Verified all build processes and dependencies are working correctly
15+
816## [ 1.4.5] - 2025-10-15
917
1018### Changed
You can’t perform that action at this time.
0 commit comments