crewtimer-common 1.0.2-beta.2 → 1.0.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.
- package/README.md +4 -3
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
# CrewTimer Types and Utilities
|
|
2
2
|
|
|
3
|
-
This repository includes types and utilities that are shared among various CrewTimer subsystems. CrewTimer grew slowly over time with nearly all the code currently written in Typescript.
|
|
3
|
+
This repository includes types and utilities that are shared among various CrewTimer subsystems. CrewTimer grew slowly over time with nearly all the code currently written in Typescript. As a result there are inconsistencies and overlap between types that may not be good design choices but reflect current implementations.
|
|
4
4
|
|
|
5
|
-
As time allows, this codebase will be cleaned and documented but
|
|
5
|
+
As time allows, this codebase will be cleaned and documented but these initial versions are put out there as-is to facilite migration of addtional CrewTimer modules to open source.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## CrewTimer Repositories
|
|
8
8
|
|
|
9
9
|
### Currently Open Source
|
|
10
10
|
|
|
11
|
+
* [crewtimer-common](https://github.com/crewtimer/crewtimer-common) - Common types and utilities for CrewTimer.
|
|
11
12
|
* [crewtimer-points](https://github.com/crewtimer/crewtimer-points) - A points engine for CrewTimer results.
|
|
12
13
|
|
|
13
14
|
### Coming Soon
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crewtimer-common",
|
|
3
|
-
"version": "1.0.2
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Common types and utilities for CrewTimer",
|
|
5
5
|
"main": "./dist/cjs/src/index.js",
|
|
6
6
|
"module": "./dist/esm/src/index.js",
|
|
@@ -14,8 +14,7 @@
|
|
|
14
14
|
"test": "jest --config jestconfig.json",
|
|
15
15
|
"prepare": "npm run build",
|
|
16
16
|
"prepublishOnly": "npm test && npm run prettier && npm run lint",
|
|
17
|
-
"start": "parcel src/example/index.html"
|
|
18
|
-
"publish": "npm publish"
|
|
17
|
+
"start": "parcel src/example/index.html"
|
|
19
18
|
},
|
|
20
19
|
"keywords": [
|
|
21
20
|
"crewtimer"
|