Skip to content

Commit dfbb35a

Browse files
Add a build manifest build step
1 parent 93493c9 commit dfbb35a

8 files changed

Lines changed: 1185 additions & 32 deletions

File tree

packages/app/src/cli/services/build/client-steps.integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import {Writable} from 'stream'
99
function buildOptions(): ExtensionBuildOptions {
1010
return {
1111
stdout: new Writable({
12-
write(chunk, encoding, callback) {
12+
write(_chunk, _encoding, callback) {
1313
callback()
1414
},
1515
}),
1616
stderr: new Writable({
17-
write(chunk, encoding, callback) {
17+
write(_chunk, _encoding, callback) {
1818
callback()
1919
},
2020
}),

packages/app/src/cli/services/build/client-steps.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export interface ClientStep {
2626
| 'validate'
2727
| 'transform'
2828
| 'custom'
29+
| 'build_manifest'
2930

3031
/** Step-specific configuration */
3132
readonly config: {[key: string]: unknown}
@@ -60,7 +61,7 @@ export interface BuildContext {
6061
[key: string]: unknown
6162
}
6263

63-
interface StepResult {
64+
export interface StepResult {
6465
readonly id: string
6566
readonly success: boolean
6667
readonly duration: number

0 commit comments

Comments
 (0)