@decidables/prospectable-elements 0.2.14 → 0.2.15

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,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.2.15](https://github.com/decidables/decidables/compare/@decidables/prospectable-elements@0.2.14...@decidables/prospectable-elements@0.2.15) (2025-01-26)
7
+
8
+ **Note:** Version bump only for package @decidables/prospectable-elements
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.2.14](https://github.com/decidables/decidables/compare/@decidables/prospectable-elements@0.2.13...@decidables/prospectable-elements@0.2.14) (2025-01-17)
7
15
 
8
16
  **Note:** Version bump only for package @decidables/prospectable-elements
package/README.md CHANGED
@@ -1374,10 +1374,14 @@ export default class ProspectableElementSomething extends ProspectableElement {
1374
1374
  - Lints scripts in `src/`
1375
1375
  - `yarn test`
1376
1376
  - Runs all tests and reports coverage in `test/coverage/`
1377
- - `yarn test:watch`
1377
+ - `yarn test --watch`
1378
+ - `yarn test -w`
1378
1379
  - Runs all tests in watch mode and reports coverage in `test/coverage/`
1379
- - `yarn test:file <filename>`
1380
+ - `yarn test <directory/filename>`
1380
1381
  - Runs tests for a single file and reports coverage in `test/coverage/`
1382
+ - `yarn test <directory/filename> --watch`
1383
+ - `yarn test <directory/filename> -w`
1384
+ - Runs tests for a single file in watch mode and reports coverage in `test/coverage/`
1381
1385
  - `yarn build`
1382
1386
  - Builds browser-compatible optimized bundle from `src/` to `lib/`
1383
1387
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decidables/prospectable-elements",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "prospectable-elements: Web Components for visualizing Cumulative Prospect Theory",
5
5
  "keywords": [
6
6
  "web component",
@@ -49,7 +49,7 @@
49
49
  ],
50
50
  "scripts": {
51
51
  "lint": "gulp lint",
52
- "test": "gulp test",
52
+ "test": "gulp test -X \"$@\"",
53
53
  "build": "gulp build"
54
54
  },
55
55
  "devDependencies": {
@@ -57,8 +57,8 @@
57
57
  "sass": "^1.76.0"
58
58
  },
59
59
  "dependencies": {
60
- "@decidables/decidables-elements": "^0.4.7",
61
- "@decidables/prospectable-math": "^0.2.9",
60
+ "@decidables/decidables-elements": "^0.4.8",
61
+ "@decidables/prospectable-math": "^0.2.10",
62
62
  "@lit-labs/motion": "^1.0.7",
63
63
  "bayes.js": "https://github.com/akrawitz/bayes.js.git#commit=c7b091b75f85a86b6a3965a983b31e23d9ef456f",
64
64
  "d3": "^7.9.0",
@@ -66,5 +66,5 @@
66
66
  "plotly.js": "^2.32.0",
67
67
  "regenerator-runtime": "^0.14.1"
68
68
  },
69
- "gitHead": "bd8032a47624293a88f7f70e0b331c1cea1ef399"
69
+ "gitHead": "5cf2dfb67f1654e4bae73186064131b1f99f1738"
70
70
  }