File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 8
8
- packages/react-router-config/node_modules
9
9
- packages/react-router-dom/node_modules
10
10
- packages/react-router-native/node_modules
11
- - packages/react-router-redux/node_modules
12
11
- website/node_modules
13
12
install :
14
13
- npm ci
15
14
before_script :
16
- - npm run build
15
+ - npm run build -- --no-website
17
16
before_deploy :
18
17
- openssl aes-256-cbc -K $encrypted_70c5e56b421c_key -iv $encrypted_70c5e56b421c_iv
19
18
-in website_deploy_key.enc -out website_deploy_key -d
Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ const cwd = process.cwd();
16
16
}
17
17
) ;
18
18
19
- // Skip building the website in CI.
20
- if ( ! process . env . CI ) {
19
+ if ( ! process . argv . includes ( "--no-website" ) ) {
21
20
process . chdir ( path . resolve ( __dirname , "../website" ) ) ;
22
21
exec ( "npm run build" ) ;
23
22
}
You can’t perform that action at this time.
0 commit comments