File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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 /playwright-core /**
35- ! node_modules /vscode-nls /**
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
3631
37- # Coverage and logs
38- coverage /
39- * .log
40- .nyc_output /
32+ # Build artifacts
33+ dist /** /* .js.map
34+ dist /__mocks__ /
4135
42- # Documentation that's not needed in the package
43- * .md
44- ! README.md
45- ! CHANGELOG.md
36+ # Environment files
37+ .env
38+ .env. *
39+ ! .env.example
4640
47- # CI and repository metadata
48- .github / **
49- .vscodeignore
41+ # Sample/demo files
42+ sample /
43+ README-STRINGLE.md
5044
51- # Package lock
52- 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 "Scrape-LE" extension will be documented in this file
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 (scrape-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