Skip to content

Commit

Permalink
update to holochain 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy committed Apr 26, 2023
1 parent a590bfc commit a908514
Show file tree
Hide file tree
Showing 11 changed files with 1,715 additions and 942 deletions.
8 changes: 4 additions & 4 deletions apps/launcher-kando/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kando-app",
"version": "0.3.5",
"version": "0.4.0",
"scripts": {
"build": "npm run build:happ && npm run build:ui",
"build:happ": "npm run build:dna && hc app pack ../workdir",
Expand All @@ -19,9 +19,9 @@
},
"dependencies": {
"@holo-host/boardz": "0.1.0",
"@holochain/client": "0.12.2",
"@holochain-open-dev/utils": "0.9.3",
"@holochain-syn/core": "0.3.0-alpha.7",
"@holochain/client": "0.13.0",
"@holochain-open-dev/utils": "0.13.6",
"@holochain-syn/core": "0.4.0",
"@ts-stack/markdown": "^1.4.0",
"lodash": "^4.17.21",
"sirv-cli": "^1.0.0",
Expand Down
8 changes: 4 additions & 4 deletions apps/launcher/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "talking-stickies-app",
"version": "0.3.1",
"version": "0.4.0",
"scripts": {
"build": "npm run build:happ && npm run build:ui",
"build:happ": "npm run build:dna && hc app pack ../workdir",
Expand All @@ -18,9 +18,9 @@
},
"dependencies": {
"@holo-host/boardz": "0.1.0",
"@holochain/client": "0.12.2",
"@holochain-open-dev/utils": "0.9.3",
"@holochain-syn/core": "0.3.0-alpha.7",
"@holochain/client": "0.13.0",
"@holochain-open-dev/utils": "0.13.6",
"@holochain-syn/core": "0.4.0",
"@ts-stack/markdown": "^1.4.0",
"lodash": "^4.17.21",
"sirv-cli": "^1.0.0",
Expand Down
147 changes: 106 additions & 41 deletions flake.lock

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

23 changes: 16 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,40 @@
{
description = "Flake for Holochain app development";
description = "Template for Holochain app development";

inputs = {
nixpkgs.follows = "holochain-dev/nixpkgs";
nixpkgs.follows = "holochain-flake/nixpkgs";

holochain-dev = {
# this can now be udpated directly, e.g.:
# nix flake lock --override-input holochain github:holochain/holochain/holochain-0.1.3
holochain.url = "github:holochain/holochain";
holochain.flake = false;

holochain-flake = {
url = "github:holochain/holochain";
inputs.versions.url = "github:holochain/holochain/?dir=versions/0_1";
inputs.holochain.url = "github:holochain/holochain/holochain-0.1.5-beta-rc.0";
};
};

outputs = inputs @ { ... }:
inputs.holochain-dev.inputs.flake-parts.lib.mkFlake
inputs.holochain-flake.inputs.flake-parts.lib.mkFlake
{
inherit inputs;
}
{
systems = builtins.attrNames inputs.holochain-dev.devShells;
systems = builtins.attrNames inputs.holochain-flake.devShells;
perSystem =
{ config
, pkgs
, system
, ...
}: {
devShells.default = pkgs.mkShell {
inputsFrom = [ inputs.holochain-dev.devShells.${system}.holonix ];
packages = [ pkgs.nodejs-18_x ];
inputsFrom = [ inputs.holochain-flake.devShells.${system}.holonix ];
packages = with pkgs; [
# more packages go here
pkgs.nodejs-18_x pkgs.binaryen
];
};
};
};
Expand Down
10 changes: 5 additions & 5 deletions libs/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
},
"dependencies": {
"@holochain-open-dev/elements": "0.1.5",
"@holochain-open-dev/utils": "0.9.3",
"@holochain-open-dev/profiles": "0.11.1",
"@holochain-syn/core": "0.3.0-alpha.7",
"@holochain/client": "0.12.2",
"@holochain-open-dev/elements": "0.4.0",
"@holochain-open-dev/utils": "0.13.6",
"@holochain-open-dev/profiles": "0.13.2",
"@holochain-syn/core": "0.4.0",
"@holochain/client": "0.13.0",
"@mdi/js": "^7.1.96",
"@ts-stack/markdown": "^1.4.0",
"lodash": "^4.17.21",
Expand Down
Loading

0 comments on commit a908514

Please sign in to comment.