@decidables/accumulable-elements 0.1.1 → 0.1.3

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 CHANGED
@@ -3,6 +3,23 @@
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.1.3](https://github.com/decidables/decidables/compare/@decidables/accumulable-elements@0.1.2...@decidables/accumulable-elements@0.1.3) (2025-02-06)
7
+
8
+ **Note:** Version bump only for package @decidables/accumulable-elements
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.1.2](https://github.com/decidables/decidables/compare/@decidables/accumulable-elements@0.1.1...@decidables/accumulable-elements@0.1.2) (2025-01-26)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **accumulable-elements:** fix keywords in accumulable packages ([cfcbdc7](https://github.com/decidables/decidables/commit/cfcbdc79b68c767dce44a8b0a5c5918a2cb87726))
20
+
21
+
22
+
6
23
  ## [0.1.1](https://github.com/decidables/decidables/compare/@decidables/accumulable-elements@0.1.0...@decidables/accumulable-elements@0.1.1) (2025-01-18)
7
24
 
8
25
  **Note:** Version bump only for package @decidables/accumulable-elements
package/README.md CHANGED
@@ -1014,10 +1014,14 @@ export default class AccumulableElementSomething extends AccumulableElement {
1014
1014
  - Lints scripts in `src/`
1015
1015
  - `yarn test`
1016
1016
  - Runs all tests and reports coverage in `test/coverage/`
1017
- - `yarn gulp testWatchScripts`
1017
+ - `yarn test --watch`
1018
+ - `yarn test -w`
1018
1019
  - Runs all tests in watch mode and reports coverage in `test/coverage/`
1019
- - `yarn gulp testScript <filename>`
1020
+ - `yarn test <directory/filename>`
1020
1021
  - Runs tests for a single file and reports coverage in `test/coverage/`
1022
+ - `yarn test <directory/filename> --watch`
1023
+ - `yarn test <directory/filename> -w`
1024
+ - Runs tests for a single file in watch mode and reports coverage in `test/coverage/`
1021
1025
  - `yarn build`
1022
1026
  - Builds browser-compatible optimized bundle from `src/` to `lib/`
1023
1027