Skip to content

Commit fe18a99

Browse files
Add a build manifest build step
1 parent d5a9a3f commit fe18a99

File tree

8 files changed

+989
-39
lines changed

8 files changed

+989
-39
lines changed

packages/app/src/cli/models/extensions/specifications/app_config_hosted_app_home.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ describe('hosted_app_home', () => {
7171
definition: {files: [{tomlKey: 'static_root'}]},
7272
},
7373
})
74-
expect(spec.buildConfig.stopOnError).toBe(true)
7574
})
7675

7776
test('config should be serializable to JSON', () => {

packages/app/src/cli/services/build/build-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/build-steps.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export interface BuildStep {
2525
/** Step type (determines which executor handles it) */
2626
readonly type:
2727
| 'copy_files'
28+
| 'build_manifest'
2829
| 'build_theme'
2930
| 'bundle_theme'
3031
| 'bundle_ui'

0 commit comments

Comments
 (0)