Skip to content

Commit a887355

Browse files
committed
Call install --frozen-lockfile in root package.json
1 parent 67d2443 commit a887355

File tree

8 files changed

+20464
-2906
lines changed

8 files changed

+20464
-2906
lines changed

examples/hosted-counter/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting chain…</code>
5959

6060
<script type="module">
6161
import * as linera from '@linera/client';
62-
import { PrivateKeySigner } from '@linera/signer';
62+
import { PrivateKey } from '@linera/signer';
6363

6464
const COUNTER_APP_ID = import.meta.env.VITE_COUNTER_APP_ID;
6565

6666
async function run() {
6767
await linera.default();
6868
const faucet = await new linera.Faucet(import.meta.env.VITE_FAUCET_URL);
69-
const signer = new PrivateKeySigner("f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66");
69+
const signer = new PrivateKey("f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66");
7070
const wallet = await faucet.createWallet();
7171
const owner = await signer.address();
7272
document.getElementById('owner').innerText = owner;

examples/hosted-counter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dev": "vite",
1010
"build": "vite build",
1111
"preview": "vite preview",
12-
"ci": "pnpm install --frozen-lockfile && pnpm build"
12+
"ci": "pnpm build"
1313
},
1414
"dependencies": {
1515
"@linera/client": "workspace:*",

examples/hosted-fungible/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting a new microchai
141141

142142
<script type="module">
143143
import * as linera from '@linera/client';
144-
import { PrivateKeySigner } from '@linera/signer';
144+
import { PrivateKey } from '@linera/signer';
145145

146146
// This needs to point at actual deployed fungible application ID.
147147
const FUNGIBLE_APP_ID = import.meta.env.VITE_FUNGIBLE_APP_ID;
@@ -220,7 +220,7 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting a new microchai
220220

221221
await linera.default();
222222
const faucet = await new linera.Faucet(import.meta.env.VITE_FAUCET_URL);
223-
const signer = new PrivateKeySigner("f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66");
223+
const signer = new PrivateKey("f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66");
224224
const wallet = await faucet.createWallet();
225225
const owner = signer.address();
226226
const chainId = await faucet.claimChain(wallet, owner);

examples/hosted-fungible/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dev": "vite",
1010
"build": "vite build",
1111
"preview": "vite preview",
12-
"ci": "pnpm install --frozen-lockfile && pnpm build"
12+
"ci": "pnpm build"
1313
},
1414
"dependencies": {
1515
"@linera/client": "workspace:*",

extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"build": "pnpm build:extension && pnpm build:library",
1313
"preview": "vite preview",
1414
"prepare": "pnpm build:library",
15-
"ci": "pnpm install --frozen-lockfile && pnpm build"
15+
"ci": "pnpm build"
1616
},
1717
"dependencies": {
1818
"@shoelace-style/shoelace": "^2.16.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"scripts": {
66
"build": "pnpm -r build",
7-
"ci": "pnpm -r run ci"
7+
"ci": "pnpm install --frozen-lockfile && pnpm -r run ci"
88
},
99
"keywords": [],
1010
"author": "Linera <contact@linera.io>",

0 commit comments

Comments
 (0)