@marimo-team/frontend 0.13.13-dev10 → 0.13.13-dev11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marimo-team/frontend",
3
- "version": "0.13.13-dev10",
3
+ "version": "0.13.13-dev11",
4
4
  "main": "dist/main.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -157,22 +157,22 @@
157
157
  },
158
158
  "scripts": {
159
159
  "preinstall": "npx only-allow pnpm",
160
- "ci": "CI=true run-s lint typecheck test build",
160
+ "ci": "cross-env CI=true run-s lint typecheck test build",
161
161
  "start": "vite",
162
162
  "dev": "vite",
163
163
  "build:watch": "vite build --watch --outDir ../marimo/_static",
164
- "build": "NODE_OPTIONS=--max-old-space-size=4096 vite build",
164
+ "build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vite build",
165
165
  "test": "vitest",
166
166
  "typecheck": "tsc --noEmit",
167
167
  "lint": "run-s lint:eslint lint:stylelint lint:biome format",
168
168
  "lint:biome": "biome lint --diagnostic-level=warn --write .",
169
- "lint:eslint": "TIMING=1 eslint src e2e-tests --fix",
169
+ "lint:eslint": "cross-env TIMING=1 eslint src e2e-tests --fix",
170
170
  "lint:stylelint": "stylelint src/**/*.css --fix",
171
171
  "format": "biome format --write .",
172
172
  "preview": "vite preview",
173
173
  "dev:islands": "cross-env VITE_MARIMO_ISLANDS=true vite --config islands/vite.config.mts",
174
- "build:islands": "VITE_MARIMO_ISLANDS=true vite --config islands/vite.config.mts build",
175
- "preview:islands": "VITE_MARIMO_VERSION='0.4.6' VITE_MARIMO_ISLANDS=true vite --config islands/vite.config.mts build",
174
+ "build:islands": "cross-env VITE_MARIMO_ISLANDS=true vite --config islands/vite.config.mts build",
175
+ "preview:islands": "cross-env VITE_MARIMO_VERSION='0.4.6' VITE_MARIMO_ISLANDS=true vite --config islands/vite.config.mts build",
176
176
  "storybook": "storybook dev -p 6006",
177
177
  "build-storybook": "storybook build"
178
178
  },