Compare commits

...

4 Commits

Author SHA1 Message Date
SG bb15c5431e Attempts to fix build: 3 2023-09-25 13:58:18 +03:00
SG f0e67c1551 Attempts to fix build: 2 2023-09-25 13:28:19 +03:00
Sergey Gavrilov bd0da7bdfc
Merge branch 'dev' into zlo/2630-logs-over-wifi 2023-09-25 13:05:33 +03:00
Max Andreev 41acbe3d97
Upgrade nodejs to 18 (#47) 2023-09-25 20:05:15 +10:00
3 changed files with 5 additions and 4 deletions

View File

@ -25,7 +25,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 1
- name: 'Checkout submodules'
run:
git submodule update --init --recursive --depth 1 --jobs "$(getconf _NPROCESSORS_ONLN)";
@ -51,7 +51,7 @@ jobs:
- name: 'Setup node'
uses: actions/setup-node@v3
with:
node-version: '17'
node-version: '18'
cache: 'npm'
cache-dependency-path: components/svelte-portal

View File

@ -59,7 +59,8 @@ export default {
// https://github.com/rollup/plugins/tree/master/packages/commonjs
resolve({
browser: true,
dedupe: ['svelte', 'stringview']
dedupe: ['svelte', 'stringview'],
extensions: ['.svelte', '.js', '.mjs']
}),
commonjs(),

View File

@ -9,7 +9,7 @@
import Grid from "./Grid.svelte";
import Value from "./Value.svelte";
import Input from "./Input.svelte";
import StringView from "StringView";
import StringView from "stringview/StringView";
import Select from "./Select.svelte";
let bytes = new Uint8Array(0);