@neuracore/types 10.4.0 → 10.5.0-main.78.1
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 +8 -0
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -25,6 +25,14 @@ yarn add @neuracore/types
|
|
|
25
25
|
pnpm add @neuracore/types
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
To track unreleased types from `main` (used by staging deploys and tests), install
|
|
29
|
+
the `main` dist-tag instead. It is republished on every push to `main` that changes
|
|
30
|
+
the generated types:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm install @neuracore/types@main
|
|
34
|
+
```
|
|
35
|
+
|
|
28
36
|
## Development
|
|
29
37
|
|
|
30
38
|
### Setup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuracore/types",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.5.0-main.78.1",
|
|
4
4
|
"description": "Shared TypeScript type definitions for Neuracore robotics platform",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"typescript": "^5.3.0",
|
|
29
29
|
"grpc-tools": "^1.13.0"
|
|
30
|
-
|
|
31
30
|
},
|
|
32
31
|
"publishConfig": {
|
|
33
32
|
"access": "public"
|