Skip to content

Commit 125dedc

Browse files
authored
Merge pull request #246 from htmlhint/dev/coliff/reduce-file-size
Reduce Package Size
2 parents 1fe736f + 9a52584 commit 125dedc

File tree

5 files changed

+63
-15
lines changed

5 files changed

+63
-15
lines changed

.cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"autobuild",
55
"codeql",
66
"coliff",
7+
"dylib",
78
"fnames",
89
"htmlhint",
910
"htmlhintrc",

htmlhint/.vscodeignore

Lines changed: 52 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,60 @@
3333
images/hero.png
3434
images/hover.png
3535
images/status-bar.png
36-
**/node_modules/**/*.css
36+
**/node_modules/**/test/**
37+
**/node_modules/**/tests/**
3738
**/node_modules/**/*.md
38-
**/node_modules/**/*.markdown
3939
**/node_modules/**/*.txt
40-
**/node_modules/**/*.yml
41-
**/node_modules/**/bower.json
42-
**/node_modules/**/license
43-
**/node_modules/**/license
44-
**/node_modules/**/LICENSE
45-
**/node_modules/**/License.txt
40+
**/node_modules/**/LICENSE*
41+
**/node_modules/**/license*
42+
**/node_modules/**/CHANGELOG*
43+
**/node_modules/**/changelog*
44+
**/node_modules/**/*.map
45+
**/node_modules/**/.bin/**
46+
**/node_modules/**/bin/**
47+
**/node_modules/**/*.cmd
48+
**/node_modules/**/*.ps1
49+
**/node_modules/**/*.sh
50+
**/node_modules/**/*.bat
51+
**/node_modules/**/*.d.ts
52+
**/node_modules/**/*.ts
53+
**/node_modules/**/tsconfig.json
4654
**/node_modules/**/package-lock.json
47-
**/node_modules/**/settings.json
48-
**/node_modules/**/*.test.js
55+
**/node_modules/**/yarn.lock
56+
**/node_modules/**/.gitignore
57+
**/node_modules/**/.npmignore
58+
**/node_modules/**/.eslintrc*
59+
**/node_modules/**/*.config.js
60+
**/node_modules/**/example/**
61+
**/node_modules/**/examples/**
62+
**/node_modules/**/docs/**
63+
**/node_modules/**/doc/**
64+
**/node_modules/**/*.exe
65+
**/node_modules/**/*.dll
66+
**/node_modules/**/*.so
67+
**/node_modules/**/*.dylib
68+
**/node_modules/**/coverage/**
69+
**/node_modules/**/.nyc_output/**
70+
**/node_modules/**/benchmark/**
71+
**/node_modules/**/benchmarks/**
72+
package-lock.json
73+
*.tsbuildinfo
74+
.tsbuildinfo
75+
**/.tsbuildinfo
76+
**/*.log
77+
**/*.tmp
78+
**/*.temp
79+
**/tmp/**
80+
**/temp/**
81+
**/*.bak
82+
**/*.backup
83+
**/*.orig
84+
**/*.rej
85+
**/*.patch
86+
**/*.diff
87+
**/*.old
88+
**/*.swp
89+
**/*.swo
90+
*~
4991
tsconfig.json
5092
typings/**

htmlhint/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the "vscode-htmlhint" extension will be documented in this file.
44

5+
### v1.6.1 (2025-06-12)
6+
7+
- Reduced file-size and minor optimizations
8+
59
### v1.6.0 (2025-06-12)
610

711
- Add autofix for `alt-require`

htmlhint/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htmlhint/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "HTMLHint",
44
"description": "VS Code integration for HTMLHint - A Static Code Analysis Tool for HTML",
55
"icon": "images/icon.png",
6-
"version": "1.6.0",
6+
"version": "1.6.1",
77
"publisher": "HTMLHint",
88
"galleryBanner": {
99
"color": "#333333",
@@ -76,7 +76,8 @@
7676
"vscode:prepublish": "npm run compile && npm run bundle-dependencies",
7777
"compile": "tsc -p ./",
7878
"watch": "tsc -watch -p ./",
79-
"bundle-dependencies": "npm install --no-package-lock --no-save htmlhint@^1.5.1 strip-json-comments@3.1.1 vscode-languageserver@9.0.1 vscode-languageserver-textdocument@^1.0.12"
79+
"bundle-dependencies": "npm install --no-package-lock --no-save htmlhint@^1.5.1 strip-json-comments@3.1.1 vscode-languageserver@9.0.1 vscode-languageserver-textdocument@^1.0.12",
80+
"package": "vsce package"
8081
},
8182
"devDependencies": {
8283
"typescript": "^5.2.2",
@@ -100,4 +101,4 @@
100101
"volta": {
101102
"node": "20.19.2"
102103
}
103-
}
104+
}

0 commit comments

Comments
 (0)