File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,20 @@ process.env.PUBLIC_URL = 'https://pro.balmjs.com';
2
2
3
3
process . env . BALM_GIT_FLOW_MAIN = 'main' ;
4
4
process . env . BALM_GIT_FLOW_RELEASE = 'docs-vue3' ;
5
- process . env . BALM_GIT_FLOW_RELEASES = [ 'docs-vue2' , 'docs- vue3'] ;
5
+ process . env . BALM_GIT_FLOW_RELEASES = [ 'docs-vue3' ] ;
6
6
process . env . BALM_GIT_FLOW_SCRIPTS = [ 'docs' ] ;
7
7
process . env . BALM_GIT_FLOW_BUILD_DIR = 'dist' ;
8
8
process . env . BALM_GIT_FLOW_REPOSITORIES = [
9
9
'[email protected] :balmjs/pro.balmjs.com.git'
10
10
] ;
11
11
process . env . BALM_GIT_FLOW_SITE = 'gh-pages' ;
12
+
13
+ function setBalmCore ( useSource = false ) {
14
+ const BALM_ROOT = '/Users/elf-mouse/www/balmjs/balm' ;
15
+ const BALM_CORE_SOURCE = `${ BALM_ROOT } /packages/balm-core` ;
16
+ const BALM_CORE = '/usr/local/node_global/lib/node_modules/balm-core' ;
17
+
18
+ process . env . BALM_CORE = useSource ? BALM_CORE_SOURCE : BALM_CORE ;
19
+ }
20
+
21
+ setBalmCore ( true ) ;
You can’t perform that action at this time.
0 commit comments