Skip to content

Commit d1fd54f

Browse files
committed
Merge branch 'feat/lib' of github.com:LiaScript/LiaScript-Exporter into feat/lib
2 parents c166f47 + 33deec9 commit d1fd54f

2,403 files changed

Lines changed: 2517 additions & 15961 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Dockerfile

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,23 @@ COPY package.json package-lock.json* ./
6464
RUN npm ci --omit=dev
6565

6666
# Pre-cache Capacitor dependencies for Android builds
67-
RUN mkdir -p /tmp/capacitor-cache && \
68-
cd /tmp/capacitor-cache && \
67+
RUN mkdir -p dist/capacitor-cache && \
68+
cd dist/capacitor-cache && \
6969
echo '{"dependencies":{"@capacitor/cli":"^8.0.0","@capacitor-community/text-to-speech":"git+https://github.com/capacitor-community/text-to-speech.git#v8.0.0","@capacitor/android":"^8.0.0","@capacitor/assets":"^3.0.5","@capacitor/core":"^8.0.0"}}' > package.json && \
7070
npm install && \
71-
cd / && \
72-
rm -rf /tmp/capacitor-cache
71+
echo "import type { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { appId: 'io.liascript.course', appName: 'App', webDir: 'www' }; export default config;" > capacitor.config.ts && \
72+
mkdir -p www && \
73+
touch www/index.html && \
74+
npx cap add android && \
75+
cd android && \
76+
./gradlew && \
77+
cd .. && \
78+
rm -rf www android capacitor.config.ts && \
79+
cd ..
7380

7481
# Copy the dist folder
7582
COPY dist/ ./dist/
7683

77-
# Create symlink for server public folder at expected path
78-
RUN mkdir -p /app/liascript-exporter/server && \
79-
ln -s /app/dist/server/public /app/liascript-exporter/server/public
80-
8184
# Install Puppeteer's Chrome explicitly
8285
RUN npx puppeteer browsers install chrome
8386

LiaScript

Submodule LiaScript updated 57 files
3.54 KB
Binary file not shown.

dist/assets/capacitor/ext-code_lens.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/capacitor/ext-elastic_tabstops_lite.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ace.require(["ace/ext/error_marker"],(function(e){"object"==typeof module&&"object"==typeof exports&&module&&(module.exports=e)}));

dist/assets/capacitor/ext-hardwrap.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/capacitor/ext-linking.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/capacitor/ext-rtl.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/capacitor/ext-simple_tokenizer.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)