Skip to content

Commit 7cb172a

Browse files
committed
bundle fixes
1 parent 6c87a69 commit 7cb172a

File tree

6 files changed

+106
-286
lines changed

6 files changed

+106
-286
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
33
"files": {
4-
"ignore": ["node_modules", "dist", "build", "coverage"]
4+
"ignore": ["node_modules", "dist", "build", "coverage", "demo"]
55
},
66
"linter": {
77
"enabled": true,

demo/spreadsheet.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ with recursive n(n) as (
2828
)
2929
select n+5 as y , 4 as x, n as value, true as bold, true as italic, true as center, 'cyan' as color, '### ##0.00 €' as number_format
3030
from n
31-
limit 10*1000;
31+
limit 100;

demo/sqlpage/templates/spreadsheet.handlebars

Lines changed: 0 additions & 212 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../dist/spreadsheet_component.html

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"source": "./src/spreadsheet_component.html",
66
"browserslist": "> 0.5%, last 2 versions, not dead",
77
"scripts": {
8-
"build": "parcel build",
8+
"build": "parcel build --no-optimize --public-url /dist/",
9+
"dev": "parcel watch --public-url /dist/",
910
"lint": "biome check",
1011
"typecheck": "tsc --noEmit",
1112
"fix": "biome check --fix --unsafe",

0 commit comments

Comments
 (0)