Skip to content

Commit 55f9aba

Browse files
committed
fix: use local workspace refs for package publish
1 parent d2c3468 commit 55f9aba

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

apps/dev/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"dependencies": {
7-
"@srl-labs/clab-adapter-memory": "0.0.1",
8-
"@srl-labs/clab-ui": "0.0.1"
7+
"@srl-labs/clab-adapter-memory": "file:../../packages/adapter-memory",
8+
"@srl-labs/clab-ui": "file:../../packages/ui"
99
}
1010
}

apps/web/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"private": true,
55
"type": "module",
66
"dependencies": {
7-
"@srl-labs/clab-adapter-api": "0.0.1",
8-
"@srl-labs/clab-ui": "0.0.1",
9-
"@srl-labs/clab-ui-explorer": "0.0.1",
10-
"@srl-labs/clab-ui-inspect": "0.0.1"
7+
"@srl-labs/clab-adapter-api": "file:../../packages/adapter-api",
8+
"@srl-labs/clab-ui": "file:../../packages/ui",
9+
"@srl-labs/clab-ui-explorer": "file:../../packages/explorer",
10+
"@srl-labs/clab-ui-inspect": "file:../../packages/inspect"
1111
}
1212
}

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/adapter-memory/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"./*": "./src/*"
1111
},
1212
"dependencies": {
13-
"@srl-labs/clab-host-contract": "0.0.1",
14-
"@srl-labs/clab-ui-core": "0.0.1"
13+
"@srl-labs/clab-host-contract": "file:../host-contract",
14+
"@srl-labs/clab-ui-core": "file:../core"
1515
}
1616
}

packages/assets/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"./*": "./src/*"
1111
},
1212
"dependencies": {
13-
"@srl-labs/clab-ui": "0.0.1",
14-
"@srl-labs/clab-ui-explorer": "0.0.1",
15-
"@srl-labs/clab-ui-inspect": "0.0.1"
13+
"@srl-labs/clab-ui": "file:../ui",
14+
"@srl-labs/clab-ui-explorer": "file:../explorer",
15+
"@srl-labs/clab-ui-inspect": "file:../inspect"
1616
}
1717
}

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@srl-labs/clab-ui",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"private": false,
55
"type": "module",
66
"main": "src/index.ts",

0 commit comments

Comments
 (0)