@aptre/common 0.14.6 → 0.14.8

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/Makefile CHANGED
@@ -107,7 +107,7 @@ genproto: protodeps
107
107
  proto_name=$${proto_file%".proto"}; \
108
108
  GO_FILES=$$(git ls-files ":(glob)$${proto_dir}/${proto_name}*.pb.go"); \
109
109
  if [ -n "$$GO_FILES" ]; then FMT_GO_FILES+=($${GO_FILES[@]}); fi; \
110
- TS_FILES=$$(git ls-files ":(glob)$${proto_dir}/${proto_name}*_*pb.ts"); \
110
+ TS_FILES=$$(git ls-files ":(glob)$${proto_dir}/${proto_name}*.pb.ts"); \
111
111
  if [ -n "$$TS_FILES" ]; then FMT_TS_FILES+=($${TS_FILES[@]}); fi; \
112
112
  if [ -z "$$TS_FILES" ]; then continue; fi; \
113
113
  for ts_file in $${TS_FILES}; do \
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.6",
4
+ "version": "0.14.8",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Aperture Robotics LLC.",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "files": [
30
30
  "!**/*.tsbuildinfo",
31
- ".eslintrc.js",
31
+ ".eslintrc.cjs",
32
32
  ".gitignore",
33
33
  "Makefile",
34
34
  "dist",
@@ -59,7 +59,7 @@
59
59
  "demo": "make demo",
60
60
  "lint": "npm run lint:go && npm run lint:js",
61
61
  "lint:go": "make lint",
62
- "lint:js": "ESLINT_USE_FLAT_CONFIG=false eslint -c .eslintrc.js ./",
62
+ "lint:js": "ESLINT_USE_FLAT_CONFIG=false eslint -c .eslintrc.cjs ./",
63
63
  "prepare": "go mod vendor && bash embed.bash",
64
64
  "release:version": "npm version patch -m \"release: v%s\" --no-git-tag-version",
65
65
  "release:commit": "git reset && git add package.json && git commit -s -m \"release: v$npm_package_version\" && git tag v$npm_package_version",
File without changes