Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
fix: move things around, versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aulneau committed Jul 2, 2022
1 parent ad846ba commit 0056b38
Show file tree
Hide file tree
Showing 10 changed files with 102 additions and 201 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "svelte-micro-stacks-demo",
"name": "@micro-stacks/svelte-micro-stacks-demo",
"private": true,
"version": "0.0.1",
"type": "module",
Expand All @@ -19,6 +19,8 @@
"typescript": "^4.7.3"
},
"dependencies": {
"@micro-stacks/svelte": "workspace:*"
"@micro-stacks/svelte": "workspace:*",
"@micro-stacks/client": "workspace:*",
"micro-stacks": "^0.6.1"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
28 changes: 18 additions & 10 deletions packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,30 @@
"name": "@micro-stacks/svelte",
"version": "1.2.3",
"description": "Opinionated svelte integration for micro-stacks.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"globals.d.ts"
"dist"
],
"sideEffects": false,
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.js",
"module": "./dist/index.js"
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"main": "./dist/*.js",
"module": "./dist/*.mjs",
"import": "./dist/*.mjs"
}
},
"sideEffects": false,
"scripts": {
"build": "shx rm -rf ./dist && tsup-node src/index.ts --format esm,cjs --dts --minify --splitting --treeshake",
"dev": "tsup-node src/index.ts --format esm,cjs --dts --splitting --treeshake --watch",
Expand Down
Loading

0 comments on commit 0056b38

Please sign in to comment.