ts-sidekiq 0.3.2 → 0.3.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/build/server.d.ts CHANGED
@@ -1 +1 @@
1
- export * from "./redis-client";
1
+ export * from "./redis-client.js";
package/build/server.js CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./redis-client";
1
+ export * from "./redis-client.js";
2
2
  //# sourceMappingURL=server.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "ts-sidekiq",
3
- "version": "0.3.2",
3
+ "type": "module",
4
+ "version": "0.3.3",
4
5
  "description": "manage sidekiq",
5
6
  "main": "build/server.js",
6
7
  "browser": "build/client.js",
@@ -15,8 +16,8 @@
15
16
  "build": "tsc",
16
17
  "test": "jest",
17
18
  "prepare": "npm run build",
18
- "start-express": "ts-node --project tsconfig.dev.json debug-server.ts",
19
- "preview": "concurrently \"npm:preview:*\"",
19
+ "start-express": "node debug-server.js",
20
+ "preview": "npm run build && concurrently \"npm:preview:*\"",
20
21
  "preview:ladle": "npx ladle serve",
21
22
  "preview:express": "npm run start-express"
22
23
  },