jikan0 0.0.2 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +14 -2
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -1,5 +1,17 @@
1
+ Jikan0 strongly typed exercise timer core library
2
+
3
+ Consist of object-oriented Timer interface and functional timer finite state machine API under the hood.
4
+
5
+ Timer is modeled as a queue data structure with a `step(n: milliseconds)` function over it.
6
+
7
+ TODO more docs
8
+
9
+ # Publishing
10
+
1
11
  Npm package exposed API
2
12
 
3
- `npx nx build facade`
13
+ `npx nx build facade`
14
+
15
+ `node tools/scripts/publish.mjs facade 0.0.3 latest`
4
16
 
5
- `node tools/scripts/publish.mjs facade 0.0.1 latest OTP`
17
+ https://nx.dev/nx-api/js/executors/tsc external: none used to inline dependencies.
package/package.json CHANGED
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "jikan0",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "dependencies": {
5
- "tslib": "^2.3.0"
5
+ "tslib": "^2.3.0",
6
+ "@jikan0/fsm": "*",
7
+ "@jikan0/adapters": "*"
6
8
  },
7
9
  "type": "commonjs",
8
10
  "main": "./src/index.js",