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.
- package/README.md +14 -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
|
-
|
|
17
|
+
https://nx.dev/nx-api/js/executors/tsc external: none used to inline dependencies.
|
package/package.json
CHANGED