@aptre/common 0.14.0 → 0.14.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.
@@ -12,12 +12,12 @@ export interface ExampleMsg extends Message<ExampleMsg> {
12
12
  *
13
13
  * @generated from field: string example_field = 1;
14
14
  */
15
- exampleField: string;
15
+ exampleField?: string;
16
16
  /**
17
17
  * OtherMsg is an example of an imported message field.
18
18
  *
19
19
  * @generated from field: example.other.OtherMsg other_msg = 2;
20
20
  */
21
- otherMsg: OtherMsg;
21
+ otherMsg?: OtherMsg;
22
22
  }
23
23
  export declare const ExampleMsg: MessageType<ExampleMsg>;
@@ -11,6 +11,6 @@ export interface OtherMsg extends Message<OtherMsg> {
11
11
  *
12
12
  * @generated from field: uint32 foo_field = 1;
13
13
  */
14
- fooField: number;
14
+ fooField?: number;
15
15
  }
16
16
  export declare const OtherMsg: MessageType<OtherMsg>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aptre/common",
3
3
  "description": "Common project configuration files and dependencies.",
4
- "version": "0.14.0",
4
+ "version": "0.14.1",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Aperture Robotics LLC.",
@@ -53,24 +53,26 @@
53
53
  "lint:go": "make lint",
54
54
  "lint:js": "ESLINT_USE_FLAT_CONFIG=false eslint -c .eslintrc.js ./",
55
55
  "prepare": "go mod vendor && bash embed.bash",
56
- "precommit": "npm run gen"
56
+ "release:version": "npm version patch -m \"release: v%s\" --no-git-tag-version",
57
+ "release:commit": "git reset && git add package.json && git commit -s -m \"release: v$npm_package_version\" && git tag v$npm_package_version",
58
+ "release:publish": "git push && git push --tags && npm run build && npm publish",
59
+ "release": "npm run release:version && npm run release:commit"
57
60
  },
58
61
  "devDependencies": {
59
62
  "depcheck": "^1.4.6",
60
- "pre-commit": "^1.2.2",
61
63
  "prettier": "^3.0.3",
62
64
  "rimraf": "^5.0.5",
63
65
  "typescript": "^5.4.5"
64
66
  },
65
67
  "dependencies": {
66
- "@aptre/protobuf-es-lite": "^0.1.2",
68
+ "@aptre/protobuf-es-lite": "^0.2.3",
67
69
  "@bufbuild/protobuf": "^1.8.0",
68
70
  "@typescript-eslint/eslint-plugin": "^7.7.0",
69
71
  "@typescript-eslint/parser": "^7.7.0",
70
72
  "eslint": "^9.1.0",
71
73
  "eslint-config-prettier": "^9.0.0",
72
- "eslint-plugin-react-hooks": "^4.6.0",
74
+ "eslint-plugin-react-hooks": "^4.6.1",
73
75
  "eslint-plugin-unused-imports": "^3.0.0",
74
- "starpc": "^0.31.6"
76
+ "starpc": "^0.31.7"
75
77
  }
76
78
  }