2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 11
11
"deploy:boxel-host:preview-staging" : " cd packages/boxel-ui/addon && pnpm build && cd ../../host && BASE_REALM_HOSTING_DISABLED=true NODE_OPTIONS='--max_old_space_size=8192' pnpm exec ember deploy s3-preview-staging --verbose" ,
12
12
"deploy:boxel-host:preview-production" : " cd packages/boxel-ui/addon && pnpm build && cd ../../host && BASE_REALM_HOSTING_DISABLED=true NODE_OPTIONS='--max_old_space_size=8192' pnpm exec ember deploy s3-preview-production --verbose" ,
13
13
"deploy:boxel-motion" : " cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy" ,
14
- "deploy:boxel-motion:preview-staging" : " cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy s3-preview-staging --verbose" ,
15
14
"deploy:boxel-motion:preview-production" : " cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy s3-preview-production --verbose" ,
16
15
"lint" : " pnpm run --filter './packages/**' --if-present -r lint" ,
17
16
"lint:fix" : " pnpm run --filter './packages/**' --if-present -r lint:fix"
Original file line number Diff line number Diff line change @@ -19,10 +19,6 @@ module.exports = function (deployTarget) {
19
19
} ,
20
20
} ;
21
21
22
- if ( deployTarget === 'staging' ) {
23
- ENV . build . environment = 'production' ;
24
- }
25
-
26
22
if ( deployTarget === 'production' ) {
27
23
ENV . build . environment = 'production' ;
28
24
}
@@ -32,10 +28,7 @@ module.exports = function (deployTarget) {
32
28
ENV . plugins = [ 'build' ] ;
33
29
}
34
30
35
- if (
36
- deployTarget === 's3-preview-staging' ||
37
- deployTarget === 's3-preview-production'
38
- ) {
31
+ if ( deployTarget === 's3-preview-production' ) {
39
32
ENV . s3 . prefix = process . env . PR_BRANCH_NAME ;
40
33
}
41
34
0 commit comments