Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ describe('hosted_app_home', () => {
definition: {files: [{tomlKey: 'static_root'}]},
},
})
expect(spec.buildConfig.stopOnError).toBe(true)
})

test('config should be serializable to JSON', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const hostedAppHomeSpec = createConfigExtensionSpecification({
},
},
],
stopOnError: true,
},
schema: HostedAppHomeSchema,
transformConfig: HostedAppHomeTransformConfig,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import {Writable} from 'stream'
function buildOptions(): ExtensionBuildOptions {
return {
stdout: new Writable({
write(chunk, encoding, callback) {
write(_chunk, _encoding, callback) {
callback()
},
}),
stderr: new Writable({
write(chunk, encoding, callback) {
write(_chunk, _encoding, callback) {
callback()
},
}),
Expand Down
1 change: 1 addition & 0 deletions packages/app/src/cli/services/build/build-steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export interface BuildStep {
/** Step type (determines which executor handles it) */
readonly type:
| 'copy_files'
| 'build_manifest'
| 'build_theme'
| 'bundle_theme'
| 'bundle_ui'
Expand Down
Loading
Loading