fix up build scripts
Some checks failed
tagged-release / Tagged Release (push) Failing after 3m48s

This commit is contained in:
TopchetoEU 2025-01-06 13:31:17 +02:00
parent de93adde8f
commit 4fd05e9e6f
Signed by: topchetoeu
GPG Key ID: 6531B8583E5F6ED4
2 changed files with 4 additions and 2 deletions

View File

@ -23,8 +23,6 @@ jobs:
with:
cache-disabled: true
gradle-version: "8.10"
- name: NPM
run: npm i
- name: Build
run: gradle build
- uses: "marvinpinto/action-automatic-releases@latest"

View File

@ -22,6 +22,8 @@ node {
}
task compileEnv(type: NpmTask) {
dependsOn npmInstall;
inputs.files('rollup.config.js');
inputs.dir('src/lib/libs');
outputs.files("build/js/env.js");
@ -30,6 +32,8 @@ task compileEnv(type: NpmTask) {
args = ['run', 'build-env'];
}
task compileTypescript(type: NpmTask) {
dependsOn npmInstall;
inputs.files('rollup.config.js');
inputs.dir('src/lib/transpiler');
outputs.files("build/js/ts.js");