@robotical/martyblocks 1.6.9 → 1.6.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Docker-compose-dev.yml +13 -0
- package/Dockerfile.dev +56 -0
- package/dist/lib.min.js +2 -2
- package/martyBlocksCliProfile +6 -4
- package/package.json +1 -1
package/martyBlocksCliProfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export PhoneAppHome=/Users/
|
|
2
|
-
export WebappHome=/Users/
|
|
3
|
-
export MBHome=/Users/
|
|
1
|
+
export PhoneAppHome=/Users/ntheodoropoulos/Robotical/phone-app/marty-react-native # <- replace this if you want to use the buildAllAndCpToWebApp function, which builds everything and copies the build files in the phoneapp
|
|
2
|
+
export WebappHome=/Users/ntheodoropoulos/Robotical/marty-web-app # <- replace this if you want to use the buildAllAndCpToWebApp function, which builds everything and copies the build files in the webapp
|
|
3
|
+
export MBHome=/Users/ntheodoropoulos/Robotical/MartyBlocks # <- replace this
|
|
4
4
|
|
|
5
5
|
export mblib=$MBHome/marty-blocks-lib/
|
|
6
6
|
export REPLACEMENTS=$MBHome/marty-blocks-lib/replacements
|
|
@@ -12,6 +12,8 @@ alias cdhome='cd $MBHome'
|
|
|
12
12
|
alias sourceMBProf='cdhome && source martyBlocksCliProfile'
|
|
13
13
|
export PATH=$(pyenv root)/shims:$PATH
|
|
14
14
|
|
|
15
|
+
## install python 2 and add it to path
|
|
16
|
+
## install Java Runtime Environment (JRE)
|
|
15
17
|
|
|
16
18
|
##################### Steps to set up the project #######################
|
|
17
19
|
|
|
@@ -129,7 +131,7 @@ cpToDist () {
|
|
|
129
131
|
}
|
|
130
132
|
|
|
131
133
|
buildBlocks() {
|
|
132
|
-
cd $blocks_original && npm run prepublish
|
|
134
|
+
cd $blocks_original && ln -s $(npm root)/google-closure-library ../closure-library; npm run prepublish
|
|
133
135
|
}
|
|
134
136
|
|
|
135
137
|
buildVm() {
|