a reactive (signals based) hypermedia web framework (wip) stormlightlabs.github.io/volt/
hypermedia frontend signals
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove css from jsr build

+7 -6
+1 -1
docs/package.json
··· 1 1 { 2 2 "name": "@voltx/docs", 3 - "version": "0.1.0", 3 + "version": "0.3.2", 4 4 "private": true, 5 5 "type": "module", 6 6 "scripts": { "dev": "vitepress dev", "build": "vitepress build", "preview": "vitepress preview" },
+1 -1
lib/deno.json
··· 1 1 { 2 2 "name": "@voltx/core", 3 - "version": "0.3.1", 3 + "version": "0.3.2", 4 4 "license": "MIT", 5 5 "exports": { ".": "./src/index.ts", "./debug": "./src/debug.ts", "./css": "./dist/voltx.css" }, 6 6 "imports": {
+3 -3
lib/jsr.json
··· 1 1 { 2 2 "name": "@voltx/core", 3 - "version": "0.3.1", 3 + "version": "0.3.2", 4 4 "license": "MIT", 5 - "exports": { ".": "./src/index.ts", "./debug": "./src/debug.ts", "./css": "./dist/volt.css" }, 6 - "publish": { "include": ["dist", "README.md", "LICENSE"] } 5 + "exports": { ".": "./src/index.ts", "./debug": "./src/debug.ts" }, 6 + "publish": { "include": ["src", "README.md", "LICENSE"] } 7 7 }
+2 -1
lib/package.json
··· 1 1 { 2 2 "name": "voltx.js", 3 - "version": "0.3.1", 3 + "version": "0.3.2", 4 4 "description": "A lightweight reactive framework for declarative UIs", 5 5 "type": "module", 6 6 "author": "Owais Jamil", ··· 27 27 "build:css": "postcss src/styles/index.css -o dist/voltx.css", 28 28 "build:css:min": "postcss src/styles/index.css -o dist/voltx.min.css --env production", 29 29 "build:finalize": "node scripts/build-finalize.js", 30 + "build:jsr": "pnpm build:clean && pnpm build:types && pnpm build:lib && pnpm build:lib:min && pnpm build:finalize", 30 31 "preview": "vite preview", 31 32 "test": "vitest", 32 33 "test:run": "vitest run",