@markuplint/svelte-spec 4.5.19-dev.110 → 4.5.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.5.20](https://github.com/markuplint/markuplint/compare/@markuplint/svelte-spec@4.5.19...@markuplint/svelte-spec@4.5.20) (2025-08-13)
7
+
8
+ ### Bug Fixes
9
+
10
+ - ensure that each `clean` command correctly removes build files ([110b78e](https://github.com/markuplint/markuplint/commit/110b78e85379d29a84ca68325127344a87a570b6))
11
+
12
+ ## [4.5.19](https://github.com/markuplint/markuplint/compare/@markuplint/svelte-spec@4.5.18...@markuplint/svelte-spec@4.5.19) (2025-04-13)
13
+
14
+ **Note:** Version bump only for package @markuplint/svelte-spec
15
+
6
16
  ## [4.5.18](https://github.com/markuplint/markuplint/compare/@markuplint/svelte-spec@4.5.17...@markuplint/svelte-spec@4.5.18) (2025-03-09)
7
17
 
8
18
  **Note:** Version bump only for package @markuplint/svelte-spec
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@markuplint/svelte-spec",
3
- "version": "4.5.19-dev.110+16e148e6e",
3
+ "version": "4.5.20",
4
4
  "description": "Extended specification for tags and attributes in Svelte",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
7
7
  "license": "MIT",
8
- "private": false,
9
8
  "type": "module",
10
9
  "exports": {
11
10
  ".": {
@@ -19,10 +18,10 @@
19
18
  "scripts": {
20
19
  "build": "tsc --project tsconfig.build.json",
21
20
  "dev": "tsc --watch --project tsconfig.build.json",
22
- "clean": "tsc --build --clean"
21
+ "clean": "tsc --build --clean tsconfig.build.json"
23
22
  },
24
23
  "dependencies": {
25
- "@markuplint/ml-spec": "4.9.6-dev.110+16e148e6e"
24
+ "@markuplint/ml-spec": "4.9.7"
26
25
  },
27
- "gitHead": "16e148e6ec2abac673c5ea1e42bbb666d421f357"
26
+ "gitHead": "acbf53f7e30d7a59f850a0f279b617383266dab3"
28
27
  }