fable 3.0.39 → 3.0.41
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/.config/configstore/update-notifier-npm.json +1 -7
- package/.config/vscode-sqltools/runningInfo.json +1 -1
- package/Dockerfile_LUXURYCode +1 -1
- package/dist/fable.compatible.js +219 -119
- package/dist/fable.compatible.min.js +8 -8
- package/dist/fable.compatible.min.js.map +1 -1
- package/dist/fable.js +167 -67
- package/dist/fable.min.js +8 -8
- package/dist/fable.min.js.map +1 -1
- package/package.json +3 -2
- package/source/Fable.js +1 -0
- package/source/services/Fable-Service-RestClient.js +26 -12
- package/test/Cache_tests.js +92 -0
- package/test/Manifest_tests.js +0 -3
- package/test/RestClient_test.js +6 -0
package/Dockerfile_LUXURYCode
CHANGED
|
@@ -8,7 +8,6 @@ VOLUME /home/coder/.vscode
|
|
|
8
8
|
RUN echo "...installing debian dependencies..."
|
|
9
9
|
RUN sudo apt update
|
|
10
10
|
RUN sudo apt install vim curl tmux -y
|
|
11
|
-
RUN sudo apt install default-mysql-server default-mysql-client -y
|
|
12
11
|
|
|
13
12
|
RUN echo "Building development image..."
|
|
14
13
|
|
|
@@ -55,6 +54,7 @@ RUN code-server --install-extension mtxr.sqltools-driver-mysql
|
|
|
55
54
|
# RUN code-server --install-extension daylerees.rainglow
|
|
56
55
|
|
|
57
56
|
RUN echo "...configuring mariadb (mysql) server...."
|
|
57
|
+
RUN sudo apt install default-mysql-server default-mysql-client -y
|
|
58
58
|
RUN sudo sed -i "s|bind-address|#bind-address|g" /etc/mysql/mariadb.conf.d/50-server.cnf
|
|
59
59
|
ADD ./retold-harness/MySQL-Security.sql /home/coder/MySQL-Configure-Security.sql
|
|
60
60
|
ADD ./retold-harness/MySQL-Laden-Entry.sh /usr/bin/MySQL-Laden-Entry.sh
|