Skip to content

Commit

Permalink
Updated to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Jun 18, 2024
1 parent c9ab0e8 commit 0dce5f2
Show file tree
Hide file tree
Showing 7 changed files with 135 additions and 143 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
inputs = {
crane.url = "github:ipetkov/crane/109987da061a1bf452f435f1653c47511587d919";

versions.url = "github:holochain/holochain?dir=versions/0_3_rc";
versions.url = "github:holochain/holochain?dir=versions/0_3";

holochain = {
url = "github:holochain/holochain";
Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 31 additions & 34 deletions packages/core-types/package.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,32 @@
{
"name": "@holochain-open-dev/core-types",
"version": "0.300.0-rc.0",
"description": "Typescript types for holochain core",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint src",
"build": "npm run lint && tsc",
"publish": "npm run build && npm publish --tag dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holochain-open-dev/core-types.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@holochain/client": "^0.17.0-rc"
},
"devDependencies": {
"@types/libsodium-wrappers": "^0.7.10",
"@types/node": "^16.11.10",
"@types/ws": "^8.2.0",
"typescript": "^5.4.0"
},
"bugs": {
"url": "https://github.com/holochain-open-dev/core-types/issues"
},
"homepage": "https://github.com/holochain-open-dev/core-types#readme"
}
"name": "@holochain-open-dev/core-types",
"version": "0.300.0",
"description": "Typescript types for holochain core",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"files": ["dist/**/*"],
"scripts": {
"lint": "eslint src",
"build": "npm run lint && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holochain-open-dev/core-types.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@holochain/client": "^0.17.0"
},
"devDependencies": {
"@types/libsodium-wrappers": "^0.7.10",
"@types/node": "^16.11.10",
"@types/ws": "^8.2.0",
"typescript": "^5.4.0"
},
"bugs": {
"url": "https://github.com/holochain-open-dev/core-types/issues"
},
"homepage": "https://github.com/holochain-open-dev/core-types#readme"
}
4 changes: 2 additions & 2 deletions packages/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holochain-open-dev/elements",
"version": "0.300.0-rc.3",
"version": "0.300.0",
"description": "Common utilities and elements to build Holochain web applications",
"author": "[email protected]",
"main": "dist/index.js",
Expand All @@ -23,7 +23,7 @@
},
"dependencies": {
"@holo-host/identicon": "^0.1.0",
"@holochain/client": "^0.17.0-rc",
"@holochain/client": "^0.17.0",
"@lit/localize": "^0.12.0",
"@lit-labs/router": "^0.1.3",
"@mdi/js": "^7.1.96",
Expand Down
81 changes: 39 additions & 42 deletions packages/signals/package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,40 @@
{
"name": "@holochain-open-dev/signals",
"version": "0.300.0-rc.3",
"description": "Holochain async-signals to build reusable holochain-open-dev modules",
"author": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"start": "vite --open",
"build": "npm run lint && tsc",
"lint": "eslint src",
"test": "vitest run",
"prepublish": "npm run build"
},
"dependencies": {
"@holochain-open-dev/utils": "^0.300.0-rc.0",
"@holochain/client": "^0.17.0-rc",
"@shoelace-style/shoelace": "^2.11.2",
"async-signals": "^0.1.10",
"lit-signal-watcher": "^0.1.1",
"signal-polyfill": "^0.1.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"js-base64": "^3.7.7",
"typescript": "^5.4.0",
"vite": "^4.1.1",
"vitest": "^1.5.0"
},
"publishConfig": {
"access": "public"
},
"type": "module"
}
"name": "@holochain-open-dev/signals",
"version": "0.300.0",
"description": "Holochain async-signals to build reusable holochain-open-dev modules",
"author": "[email protected]",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "src"],
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"start": "vite --open",
"build": "npm run lint && tsc",
"lint": "eslint src",
"test": "vitest run",
"prepublish": "npm run build"
},
"dependencies": {
"@holochain-open-dev/utils": "^0.300.0",
"@holochain/client": "^0.17.0",
"@shoelace-style/shoelace": "^2.11.2",
"async-signals": "^0.1.10",
"lit-signal-watcher": "^0.1.1",
"signal-polyfill": "^0.1.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"js-base64": "^3.7.7",
"typescript": "^5.4.0",
"vite": "^4.1.1",
"vitest": "^1.5.0"
},
"publishConfig": {
"access": "public"
},
"type": "module"
}
90 changes: 44 additions & 46 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,45 @@
{
"name": "@holochain-open-dev/utils",
"version": "0.300.0-rc.0",
"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": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/holochain-open-dev/common.git"
},
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"build": "npm run lint && tsc --incremental",
"build:watch": "tsc --watch --preserveWatchOutput",
"lint": "eslint src",
"test": "vitest run"
},
"dependencies": {
"@holochain/client": "^0.17.0-rc",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"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": "@holochain-open-dev/utils",
"version": "0.300.0",
"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": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/holochain-open-dev/common.git"
},
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*"
},
"scripts": {
"build": "npm run lint && tsc --incremental",
"build:watch": "tsc --watch --preserveWatchOutput",
"lint": "eslint src",
"test": "vitest run"
},
"dependencies": {
"@holochain/client": "^0.17.0",
"@msgpack/msgpack": "^2.8.0",
"blakejs": "^1.2.1",
"emittery": "^1.0.1",
"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"
}

0 comments on commit 0dce5f2

Please sign in to comment.