Skip to content

Commit

Permalink
Fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Dec 18, 2024
1 parent bd2c834 commit 27ede2e
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 91 deletions.
93 changes: 48 additions & 45 deletions packages/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,49 @@
{
"name": "@tnesh-stack/elements",
"version": "0.400.0-rc.1",
"description": "Common utilities and elements to build Holochain web applications",
"author": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["src", "dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/darksoil-studio/tnesh-stack.git"
},
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"start": "vite --open",
"build": "pnpm lint && tsc && pnpm analyze",
"lint": "eslint src",
"analyze": "cem analyze --litelement --exclude dist"
},
"dependencies": {
"@holo-host/identicon": "^0.1.0",
"@holochain/client": "^0.18.0-rc",
"@lit/localize": "^0.12.0",
"@lit/context": "^1.0.0",
"@lit-labs/router": "^0.1.3",
"@mdi/js": "^7.1.96",
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^3.0.2"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.4.17",
"concurrently": "^7.0.0",
"typescript": "^4.9.0",
"vite": "^4.2.0",
"vite-plugin-checker": "^0.5.5"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"customElements": "custom-elements.json"
}
"name": "@tnesh-stack/elements",
"version": "0.400.0-rc.1",
"description": "Common utilities and elements to build Holochain web applications",
"author": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/darksoil-studio/tnesh-stack.git"
},
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"start": "vite --open",
"build": "pnpm lint && tsc && pnpm analyze",
"lint": "eslint src",
"analyze": "cem analyze --litelement --exclude dist"
},
"dependencies": {
"@holo-host/identicon": "^0.1.0",
"@holochain/client": "^0.18.0-rc",
"@lit/localize": "^0.12.0",
"@lit/context": "^1.0.0",
"@lit-labs/router": "^0.1.3",
"@mdi/js": "^7.1.96",
"@shoelace-style/shoelace": "^2.11.0",
"lit": "^3.0.2"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.4.17",
"concurrently": "^7.0.0",
"typescript": "^4.9.0",
"vite": "^4.2.0",
"vite-plugin-checker": "^0.5.5"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"customElements": "custom-elements.json"
}
93 changes: 48 additions & 45 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,49 @@
{
"name": "@tnesh-stack/utils",
"version": "0.400.0-rc.1",
"description": "Common utilities to build Holochain web applications",
"author": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["src", "dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/darksoil-studio/tnesh-stack.git"
},
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"build": "pnpm lint && tsc --incremental",
"build:watch": "tsc --watch --preserveWatchOutput",
"lint": "eslint src",
"test": "vitest run"
},
"dependencies": {
"@holochain/client": "^0.18.0-rc",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"js-base64": "^3.7.7",
"lodash-es": "^4.17.21",
"sort-keys": "^5.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"concurrently": "^7.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3",
"vite": "^4.1.1",
"vitest": "^1.4.0"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"customElements": "custom-elements.json"
}
"name": "@tnesh-stack/utils",
"version": "0.400.0-rc.1",
"description": "Common utilities to build Holochain web applications",
"author": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/darksoil-studio/tnesh-stack.git"
},
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"build": "pnpm lint && tsc --incremental",
"build:watch": "tsc --watch --preserveWatchOutput",
"lint": "eslint src",
"test": "vitest run"
},
"dependencies": {
"@holochain/client": "^0.18.0-rc",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"js-base64": "^3.7.7",
"lodash-es": "^4.17.21",
"sort-keys": "^5.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"concurrently": "^7.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3",
"vite": "^4.1.1",
"vitest": "^1.4.0"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"customElements": "custom-elements.json"
}
2 changes: 1 addition & 1 deletion templates/app/web-app/ui/package.json.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@holochain/client": "^0.18.0-rc",
"@darksoil-studio/profiles-zome": "github:darksoil-studio/profiles-zome/main-0.4&path:ui",
"@darksoil-studio/profiles-zome": "github:darksoil-studio/profiles-zome#main-0.4&path:ui",
"@tnesh-stack/elements": "^0.400.0-rc",
"@tnesh-stack/signals": "^0.400.0-rc",
"@tnesh-stack/utils": "^0.400.0-rc",
Expand Down

0 comments on commit 27ede2e

Please sign in to comment.