@decidables/accumulable-elements 0.1.0 → 0.1.2

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 (3) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.md +6 -4
  3. package/package.json +10 -9
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.2](https://github.com/decidables/decidables/compare/@decidables/accumulable-elements@0.1.1...@decidables/accumulable-elements@0.1.2) (2025-01-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **accumulable-elements:** fix keywords in accumulable packages ([cfcbdc7](https://github.com/decidables/decidables/commit/cfcbdc79b68c767dce44a8b0a5c5918a2cb87726))
12
+
13
+
14
+
15
+ ## [0.1.1](https://github.com/decidables/decidables/compare/@decidables/accumulable-elements@0.1.0...@decidables/accumulable-elements@0.1.1) (2025-01-18)
16
+
17
+ **Note:** Version bump only for package @decidables/accumulable-elements
18
+
19
+
20
+
21
+
22
+
6
23
  ## 0.1.0 (2025-01-17)
7
24
 
8
25
 
package/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  # **`@decidables/accumulable-elements`**<br>Web Components for Visualizing the Diffusion Decision Model in [<b><i>a</i>ccumulable</b>](https://decidables.github.io/accumulable)
4
4
 
5
- Note: **NOT PUBLISHED YET!**
6
-
7
5
  [![npm version](https://img.shields.io/npm/v/@decidables/accumulable-elements?logo=npm)](https://www.npmjs.com/package/@decidables/accumulable-elements)
8
6
  [![license](https://img.shields.io/npm/l/@decidables/accumulable-elements?color=informational)](https://github.com/decidables/decidables/blob/main/LICENSE.md)
9
7
 
@@ -1016,10 +1014,14 @@ export default class AccumulableElementSomething extends AccumulableElement {
1016
1014
  - Lints scripts in `src/`
1017
1015
  - `yarn test`
1018
1016
  - Runs all tests and reports coverage in `test/coverage/`
1019
- - `yarn gulp testWatchScripts`
1017
+ - `yarn test --watch`
1018
+ - `yarn test -w`
1020
1019
  - Runs all tests in watch mode and reports coverage in `test/coverage/`
1021
- - `yarn gulp testScript <filename>`
1020
+ - `yarn test <directory/filename>`
1022
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/`
1023
1025
  - `yarn build`
1024
1026
  - Builds browser-compatible optimized bundle from `src/` to `lib/`
1025
1027
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decidables/accumulable-elements",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "accumulable-elements: Web Components for visualizing the Diffusion Decision Model",
5
5
  "keywords": [
6
6
  "web component",
@@ -8,10 +8,11 @@
8
8
  "explorable",
9
9
  "decision making",
10
10
  "decidables",
11
- "hyperbolic temporal discounting",
12
- "temporal discounting",
13
- "delay discounting",
14
- "discountable"
11
+ "diffusion decision model",
12
+ "drift diffusion model",
13
+ "sequential sampling model",
14
+ "reaction time",
15
+ "accumulable"
15
16
  ],
16
17
  "type": "module",
17
18
  "main": "./lib/accumulableElements.umd.min.js",
@@ -45,15 +46,15 @@
45
46
  ],
46
47
  "scripts": {
47
48
  "lint": "gulp lint",
48
- "test": "gulp test",
49
+ "test": "gulp test -X \"$@\"",
49
50
  "build": "gulp build"
50
51
  },
51
52
  "devDependencies": {
52
53
  "gulp": "^5.0.0"
53
54
  },
54
55
  "dependencies": {
55
- "@decidables/accumulable-math": "^0.1.0",
56
- "@decidables/decidables-elements": "^0.4.7",
56
+ "@decidables/accumulable-math": "^0.1.2",
57
+ "@decidables/decidables-elements": "^0.4.8",
57
58
  "@lit-labs/motion": "^1.0.7",
58
59
  "@observablehq/plot": "^0.6.14",
59
60
  "bayes.js": "https://github.com/akrawitz/bayes.js.git#commit=c7b091b75f85a86b6a3965a983b31e23d9ef456f",
@@ -61,5 +62,5 @@
61
62
  "lit": "^3.1.3",
62
63
  "regenerator-runtime": "^0.14.1"
63
64
  },
64
- "gitHead": "bd8032a47624293a88f7f70e0b331c1cea1ef399"
65
+ "gitHead": "5cf2dfb67f1654e4bae73186064131b1f99f1738"
65
66
  }