@decidables/discountable-elements 0.3.7 → 0.3.9

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,22 @@
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.3.9](https://github.com/decidables/decidables/compare/@decidables/discountable-elements@0.3.8...@decidables/discountable-elements@0.3.9) (2025-02-06)
7
+
8
+ **Note:** Version bump only for package @decidables/discountable-elements
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.3.8](https://github.com/decidables/decidables/compare/@decidables/discountable-elements@0.3.7...@decidables/discountable-elements@0.3.8) (2025-01-26)
15
+
16
+ **Note:** Version bump only for package @decidables/discountable-elements
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.3.7](https://github.com/decidables/decidables/compare/@decidables/discountable-elements@0.3.6...@decidables/discountable-elements@0.3.7) (2025-01-17)
7
23
 
8
24
  **Note:** Version bump only for package @decidables/discountable-elements
package/README.md CHANGED
@@ -796,10 +796,14 @@ export default class DiscountableElementSomething extends DiscountableElement {
796
796
  - Lints scripts in `src/`
797
797
  - `yarn test`
798
798
  - Runs all tests and reports coverage in `test/coverage/`
799
- - `yarn test:watch`
799
+ - `yarn test --watch`
800
+ - `yarn test -w`
800
801
  - Runs all tests in watch mode and reports coverage in `test/coverage/`
801
- - `yarn test:file <filename>`
802
+ - `yarn test <directory/filename>`
802
803
  - Runs tests for a single file and reports coverage in `test/coverage/`
804
+ - `yarn test <directory/filename> --watch`
805
+ - `yarn test <directory/filename> -w`
806
+ - Runs tests for a single file in watch mode and reports coverage in `test/coverage/`
803
807
  - `yarn build`
804
808
  - Builds browser-compatible optimized bundle from `src/` to `lib/`
805
809