@gadgetinc/dateilager 0.7.2 → 0.7.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 CHANGED
@@ -1 +1,7 @@
1
1
  # DateiLager JS Client
2
+
3
+ Prerelease:
4
+
5
+ 1. run `npm run prerelrease`
6
+ 2. grab that value (e.g. `@gadgetinc/dateilager-v0.7.2-gitpkg-e956574`)
7
+ 3. https://codeload.github.com/gadget-inc/dateilager/tar.gz/`<value from 2>`
@@ -1,2 +1,3 @@
1
1
  export * from "./binary-client";
2
2
  export * from "./grpc-client";
3
+ export * from "./utils/errors";
package/dist/cjs/index.js CHANGED
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./binary-client"), exports);
18
18
  __exportStar(require("./grpc-client"), exports);
19
+ __exportStar(require("./utils/errors"), exports);
19
20
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,gDAA8B","sourcesContent":["export * from \"./binary-client\";\nexport * from \"./grpc-client\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,gDAA8B;AAC9B,iDAA+B","sourcesContent":["export * from \"./binary-client\";\nexport * from \"./grpc-client\";\nexport * from \"./utils/errors\";\n"]}
@@ -1,2 +1,3 @@
1
1
  export * from "./binary-client";
2
2
  export * from "./grpc-client";
3
+ export * from "./utils/errors";
package/dist/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from "./binary-client";
2
2
  export * from "./grpc-client";
3
+ export * from "./utils/errors";
3
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC","sourcesContent":["export * from \"./binary-client\";\nexport * from \"./grpc-client\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC","sourcesContent":["export * from \"./binary-client\";\nexport * from \"./grpc-client\";\nexport * from \"./utils/errors\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gadgetinc/dateilager",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "homepage": "https://github.com/gadget-inc/dateilager",
5
5
  "bugs": "https://github.com/gadget-inc/dateilager/issues",
6
6
  "repository": {
@@ -27,6 +27,7 @@
27
27
  "build": "rm -rf dist && tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json",
28
28
  "fmt": "prettier --write . && eslint --fix .",
29
29
  "lint": "prettier --check . && eslint . && tsc --project tsconfig.eslint.json && tsc --project spec/tsconfig.json",
30
+ "prerelease": "gitpkg publish",
30
31
  "test": "DL_SKIP_SSL_VERIFICATION=1 NODE_EXTRA_CA_CERTS=\"$(mkcert -CAROOT)/rootCA.pem\" jest --runInBand"
31
32
  },
32
33
  "dependencies": {
@@ -51,6 +52,7 @@
51
52
  "eslint-plugin-import": "^2.26.0",
52
53
  "eslint-plugin-jest": "^27.0.2",
53
54
  "eslint-plugin-jsdoc": "^39.3.6",
55
+ "gitpkg": "^1.0.0-beta.4",
54
56
  "jest": "^29.7.0",
55
57
  "pg": "^8.9.0",
56
58
  "prettier": "^2.7.1",