@decidables/decidables-elements 0.4.7 → 0.4.8
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.
- package/CHANGELOG.md +8 -0
- package/README.md +6 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [0.4.8](https://github.com/decidables/decidables/compare/@decidables/decidables-elements@0.4.7...@decidables/decidables-elements@0.4.8) (2025-01-26)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @decidables/decidables-elements
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.4.7](https://github.com/decidables/decidables/compare/@decidables/decidables-elements@0.4.6...@decidables/decidables-elements@0.4.7) (2025-01-17)
|
|
7
15
|
|
|
8
16
|
|
package/README.md
CHANGED
|
@@ -287,10 +287,14 @@ And `this.stuff` will be a `Set` with members: `'this'`, `'that'`, and `'other'`
|
|
|
287
287
|
- Lints markdown, scripts and styles
|
|
288
288
|
- `yarn test`
|
|
289
289
|
- Runs all tests and reports coverage in `test/coverage/`
|
|
290
|
-
- `yarn test
|
|
290
|
+
- `yarn test --watch`
|
|
291
|
+
- `yarn test -w`
|
|
291
292
|
- Runs all tests in watch mode and reports coverage in `test/coverage/`
|
|
292
|
-
- `yarn test
|
|
293
|
+
- `yarn test <directory/filename>`
|
|
293
294
|
- Runs tests for a single file and reports coverage in `test/coverage/`
|
|
295
|
+
- `yarn test <directory/filename> --watch`
|
|
296
|
+
- `yarn test <directory/filename> -w`
|
|
297
|
+
- Runs tests for a single file in watch mode and reports coverage in `test/coverage/`
|
|
294
298
|
- `yarn build`
|
|
295
299
|
- Builds bundles from `src/` to `lib/`
|
|
296
300
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decidables/decidables-elements",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.8",
|
|
4
4
|
"description": "decidables-elements: Basic UI Web Components for the decidables project",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web component",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"scripts": {
|
|
40
40
|
"lint": "gulp lint",
|
|
41
|
-
"test": "gulp test",
|
|
41
|
+
"test": "gulp test -X \"$@\"",
|
|
42
42
|
"build": "gulp build"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"d3": "^7.9.0",
|
|
49
49
|
"lit": "^3.1.3"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "5cf2dfb67f1654e4bae73186064131b1f99f1738"
|
|
52
52
|
}
|