trigger.dev 3.0.0-beta.6 → 3.0.0-beta.7
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/dist/Containerfile.prod
CHANGED
|
@@ -12,6 +12,8 @@ WORKDIR /app
|
|
|
12
12
|
|
|
13
13
|
# copy all the files just in case anything is needed in postinstall
|
|
14
14
|
COPY --chown=node:node . .
|
|
15
|
+
|
|
16
|
+
USER node
|
|
15
17
|
RUN npm ci --no-fund --no-audit && npm cache clean --force
|
|
16
18
|
|
|
17
19
|
# Development or production stage builds upon the base stage
|
package/dist/index.js
CHANGED
|
@@ -801,7 +801,7 @@ import invariant from "tiny-invariant";
|
|
|
801
801
|
import { z as z4 } from "zod";
|
|
802
802
|
|
|
803
803
|
// package.json
|
|
804
|
-
var version = "3.0.0-beta.
|
|
804
|
+
var version = "3.0.0-beta.7";
|
|
805
805
|
var dependencies = {
|
|
806
806
|
"@clack/prompts": "^0.7.0",
|
|
807
807
|
"@depot/cli": "0.0.1-cli.2.55.0",
|
|
@@ -894,7 +894,7 @@ var package_default = {
|
|
|
894
894
|
type: "module",
|
|
895
895
|
exports: "./dist/index.js",
|
|
896
896
|
bin: {
|
|
897
|
-
|
|
897
|
+
triggerdev: "./dist/index.js"
|
|
898
898
|
},
|
|
899
899
|
devDependencies: {
|
|
900
900
|
"@trigger.dev/core-apps": "workspace:*",
|