Skip to content

Commit

Permalink
ops: align versions in monorepo (#5973)
Browse files Browse the repository at this point in the history
Disable package versioning (lock to 0.0.0) since we are using git tags.
Add `"private": true`, to each workspace to explicitly avoid publishing.
  • Loading branch information
Kavinjsir authored Nov 7, 2024
1 parent 54bd1eb commit 7e48def
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 17 deletions.
3 changes: 2 additions & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "docs",
"version": "0.0.1",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "docusaurus start --port 4002",
"build": "docusaurus build --out-dir dist",
Expand Down
17 changes: 8 additions & 9 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@rilldata/dev",
"version": "0.10.0",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"docs",
Expand Down
5 changes: 3 additions & 2 deletions web-admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "web-admin",
"version": "0.0.1",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite dev",
"build": "vite build && cp _redirects build",
Expand Down Expand Up @@ -30,7 +31,7 @@
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.13",
"vitest": "^2.1.3",
"web-common": "0.0.1"
"web-common": "*"
},
"type": "module"
}
2 changes: 1 addition & 1 deletion web-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web-auth",
"version": "0.0.1",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down
3 changes: 2 additions & 1 deletion web-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "web-common",
"version": "0.0.1",
"private": true,
"version": "0.0.0",
"scripts": {
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
Expand Down
5 changes: 3 additions & 2 deletions web-local/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@rilldata/rill",
"version": "0.15.0",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite dev",
Expand Down Expand Up @@ -29,6 +30,6 @@
"svelte-preprocess": "^6.0.3",
"tree-kill": "^1.2.2",
"vitest": "^2.1.3",
"web-common": "0.0.1"
"web-common": "*"
}
}

1 comment on commit 7e48def

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.