chore(svelte): bump

This commit is contained in:
moklick
2023-08-24 15:10:19 +02:00
parent 34abe4781f
commit 05b735cc4f
+8 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@xyflow/svelte",
"version": "0.0.12",
"version": "0.0.14",
"description": "Svelte Flow - A highly customizable Svelte library for building node-based editors, workflow systems, diagrams and more.",
"keywords": [
"svelte",
@@ -13,7 +13,7 @@
],
"scripts": {
"dev": "concurrently \"vite dev\" pnpm:css-watch",
"build": "svelte-kit sync && svelte-package -o dist",
"build": "svelte-kit sync && svelte-package -o dist && pnpm css",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"css": "postcss src/styles/{base,style}.css --config ./../../tooling/postcss-config --dir dist",
@@ -29,8 +29,13 @@
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"./dist/base.css": "./dist/base.css",
"./dist/style.css": "./dist/style.css"
},
"sideEffects": [
"*.css"
],
"publishConfig": {
"access": "public"
},