diff --git a/.github/workflows/pre_release.yml b/.github/workflows/pre_release.yml index 67f914652..06c09b0ff 100644 --- a/.github/workflows/pre_release.yml +++ b/.github/workflows/pre_release.yml @@ -14,6 +14,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 + with: + python-version: '3.11' - uses: actions/setup-node@v3 with: node-version: '18' diff --git a/.github/workflows/tagged_release.yml b/.github/workflows/tagged_release.yml index edca1c8ae..a480a8bd5 100644 --- a/.github/workflows/tagged_release.yml +++ b/.github/workflows/tagged_release.yml @@ -13,6 +13,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 + with: + python-version: '3.11' - uses: actions/setup-node@v3 with: node-version: '18' diff --git a/.github/workflows/test_release.yml b/.github/workflows/test_release.yml index 69467540e..d932ad6d4 100644 --- a/.github/workflows/test_release.yml +++ b/.github/workflows/test_release.yml @@ -14,6 +14,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 + with: + python-version: '3.11' - uses: actions/setup-node@v3 with: node-version: '18' diff --git a/interface/vite.config.ts b/interface/vite.config.ts index ddb9cfb1b..32a86cd5c 100644 --- a/interface/vite.config.ts +++ b/interface/vite.config.ts @@ -78,7 +78,7 @@ export default defineConfig(({ command, mode }) => { ], build: { - target: 'es2022', + // target: 'es2022', outDir: 'dist', reportCompressedSize: false, chunkSizeWarningLimit: 1024, @@ -94,11 +94,11 @@ export default defineConfig(({ command, mode }) => { sequences: true }, mangle: { - toplevel: true, - module: true, - properties: { - regex: /^_/ - } + // toplevel: true + // module: true + // properties: { + // regex: /^_/ + // } }, ecma: 5, enclose: false,