You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/new-build-system-preview.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: "How to use the new build system preview release"
5
5
6
6
Based on feedback and a steady flow of issues from our previous build system, we're happy to share with you a preview release of our new build system that (hopefully) fixes most of the issues you may have faced.
7
7
8
-
The main features of the new build sytem are:
8
+
The main features of the new build system are:
9
9
10
10
-**Bundling by default**: All dependencies are bundled by default, so you no longer need to specify which dependencies to bundle. This solves a whole bunch of issues related to monorepos.
11
11
-**Build extensions**: A new way to extend the build process with custom logic. This is a more flexible and powerful way to extend the build process compared to the old system. (including custom esbuild plugin support)
@@ -164,7 +164,7 @@ One other difference is now `params.env` only contains the environment variables
164
164
165
165
### emitDecoratorMetadata
166
166
167
-
If you make use of decorators in your code, and have enabled the `emitDecoratorMetadata` tsconfig compiler option, you'll need to enable this in the new build sytem using the `emitDecoratorMetadata` build extension:
167
+
If you make use of decorators in your code, and have enabled the `emitDecoratorMetadata` tsconfig compiler option, you'll need to enable this in the new build system using the `emitDecoratorMetadata` build extension:
168
168
169
169
```ts
170
170
import { defineConfig } from"@trigger.dev/sdk";
@@ -285,7 +285,7 @@ import { audioWaveform } from "@trigger.dev/build/extensions/audioWaveform";
285
285
exportdefaultdefineConfig({
286
286
project: "<project ref>",
287
287
build: {
288
-
extensions: [audioWaveform()], // uses verson 1.1.0 of audiowaveform by default
288
+
extensions: [audioWaveform()], // uses version 1.1.0 of audiowaveform by default
Copy file name to clipboardExpand all lines: docs/upgrading-beta.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ The Trigger.dev packages are now at version `3.0.x` in the `latest` tag. This is
10
10
11
11
The major changes in this release are a new build system, which is more flexible and powerful than the previous build system. We've also made some changes to the `trigger.dev` CLI to improve the developer experience.
12
12
13
-
The main features of the new build sytem are:
13
+
The main features of the new build system are:
14
14
15
15
-**Bundling by default**: All dependencies are bundled by default, so you no longer need to specify which dependencies to bundle. This solves a whole bunch of issues related to monorepos.
16
16
-**Build extensions**: A new way to extend the build process with custom logic. This is a more flexible and powerful way to extend the build process compared to the old system. (including custom esbuild plugin support)
@@ -171,7 +171,7 @@ See the [syncEnvVars](/deploy-environment-variables#sync-env-vars-from-another-s
171
171
172
172
### emitDecoratorMetadata
173
173
174
-
If you make use of decorators in your code, and have enabled the `emitDecoratorMetadata` tsconfig compiler option, you'll need to enable this in the new build sytem using the `emitDecoratorMetadata` build extension:
174
+
If you make use of decorators in your code, and have enabled the `emitDecoratorMetadata` tsconfig compiler option, you'll need to enable this in the new build system using the `emitDecoratorMetadata` build extension:
175
175
176
176
```ts
177
177
import { defineConfig } from"@trigger.dev/sdk";
@@ -292,7 +292,7 @@ import { audioWaveform } from "@trigger.dev/build/extensions/audioWaveform";
292
292
exportdefaultdefineConfig({
293
293
project: "<project ref>",
294
294
build: {
295
-
extensions: [audioWaveform()], // uses verson 1.1.0 of audiowaveform by default
295
+
extensions: [audioWaveform()], // uses version 1.1.0 of audiowaveform by default
0 commit comments