trigger.dev 0.0.0-v3-canary-20240321115026 → 0.0.0-v3-canary-20240321121448
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/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/templates/{trigger.config.ts → trigger.config.ts.template} +2 -2
- package/dist/workers/dev/worker-facade.js +1 -1
- package/dist/workers/prod/worker-facade.js +1 -1
- package/package.json +3 -3
- /package/dist/templates/examples/{simple.js → simple.ts.template} +0 -0
package/dist/index.js
CHANGED
|
@@ -800,7 +800,7 @@ import invariant from "tiny-invariant";
|
|
|
800
800
|
import { z as z4 } from "zod";
|
|
801
801
|
|
|
802
802
|
// package.json
|
|
803
|
-
var version = "0.0.0-v3-canary-
|
|
803
|
+
var version = "0.0.0-v3-canary-20240321121448";
|
|
804
804
|
var dependencies = {
|
|
805
805
|
"@baselime/node-opentelemetry": "^0.4.6",
|
|
806
806
|
"@clack/prompts": "^0.7.0",
|
|
@@ -4847,7 +4847,7 @@ async function createTriggerDir(dir, options) {
|
|
|
4847
4847
|
span.end();
|
|
4848
4848
|
return;
|
|
4849
4849
|
}
|
|
4850
|
-
const exampleFile = resolveInternalFilePath(`./templates/examples/${example}.
|
|
4850
|
+
const exampleFile = resolveInternalFilePath(`./templates/examples/${example}.ts.template`);
|
|
4851
4851
|
const outputPath = join6(triggerDir, "example.ts");
|
|
4852
4852
|
await createFileFromTemplate({
|
|
4853
4853
|
templatePath: exampleFile,
|
|
@@ -4990,7 +4990,7 @@ async function writeConfigFile(dir, project, options) {
|
|
|
4990
4990
|
const spnnr = spinner5();
|
|
4991
4991
|
spnnr.start("Creating config file");
|
|
4992
4992
|
const projectDir = resolve3(process.cwd(), dir);
|
|
4993
|
-
const templatePath = resolveInternalFilePath("./templates/trigger.config.ts");
|
|
4993
|
+
const templatePath = resolveInternalFilePath("./templates/trigger.config.ts.template");
|
|
4994
4994
|
const outputPath = join6(projectDir, "trigger.config.ts");
|
|
4995
4995
|
span.setAttributes({
|
|
4996
4996
|
"cli.projectDir": projectDir,
|