Skip to content

Commit 86a9681

Browse files
authored
Merge branch 'develop' into feature/export-stl
2 parents e588244 + c485237 commit 86a9681

33 files changed

Lines changed: 1447 additions & 347953 deletions

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = {
99
'@typescript-eslint/no-unused-vars': ['error'],
1010
'@typescript-eslint/no-unsafe-declaration-merging': 'off'
1111
},
12-
ignorePatterns: ['dist', 'examples'],
12+
ignorePatterns: ['dist', 'examples', 'demo/lib'],
1313
env: {
1414
browser: true
1515
}

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525
- uses: actions/setup-node@v4
2626
with:
27-
node-version: '20.x'
27+
node-version: '22.x'
2828
cache: "npm"
2929
- run: npm ci
3030
- run: npm run build

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.19.0
1+
v22.12.0

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
dist
66
vue.esm-browser.js
77
*.min.css
8-
examples/react-typescript-demo/build
8+
examples/react-typescript-demo/build
9+
demo/lib

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,6 @@ It would be great if you want to help! Maybe you'd like to help out with:
163163
- ❤️ Thank you @Sindarius for implementing G2/G3 arc support.
164164
- ❤️ Thank you @Zeng95 for providing a React & Typescript example.
165165

166-
## Changelog
167-
Jump to the [CHANGELOG](CHANGELOG.md)
168166
## Known issues
169167
### Preview doesn't render in Brave
170168
This is caused by the device recognition shield in Brave. By changing the setting for "Device Recognition" in Shield settings to "Allow all device recognition attemps" or "Only block cross-site device recognition attemps" you should not get this error.

demo/apply-cors.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
gcloud storage buckets update gs://gcode-preview.firebasestorage.app --cors-file=cors.json

demo/cors.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[
2+
{
3+
"origin": ["*"],
4+
"method": ["GET"],
5+
"responseHeader": ["Content-Type"],
6+
"maxAgeSeconds": 3600
7+
}
8+
]

demo/gcodes/3DBenchy-Multi-part.gcode

Lines changed: 0 additions & 225476 deletions
This file was deleted.

0 commit comments

Comments
 (0)