Skip to content

Commit

Permalink
[cli] Prepare vue-utils for release, remove test prod deps, add publi…
Browse files Browse the repository at this point in the history
…shConfig.access (#3227)

- I forgot `@lit-labs/vue-utils` in #3225, so that's now `private` and has a changeset so that the next publish will release it as `0.1.0`.
- Removed a couple of prod `dependencies` on `@lit-internal/tests`, which should have been `devDependencies`.
- Add missing `publishConfig.access` to new packages `package.json` files.
  • Loading branch information
aomarks committed Aug 18, 2022
1 parent 198da7c commit 26cfefd
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/tidy-lobsters-press.md
@@ -0,0 +1,5 @@
---
'@lit-labs/vue-utils': minor
---

Initial release
3 changes: 3 additions & 0 deletions packages/labs/cli/package.json
Expand Up @@ -2,6 +2,9 @@
"name": "@lit-labs/cli",
"description": "Tooling for Lit development",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"author": "Google LLC",
"license": "BSD-3-Clause",
"bin": {
Expand Down
3 changes: 3 additions & 0 deletions packages/labs/gen-utils/package.json
Expand Up @@ -2,6 +2,9 @@
"name": "@lit-labs/gen-utils",
"description": "Utilities for lit code generators",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": "https://github.com/lit/lit/issues",
Expand Down
7 changes: 5 additions & 2 deletions packages/labs/gen-wrapper-angular/package.json
Expand Up @@ -3,6 +3,9 @@
"name": "@lit-labs/gen-wrapper-angular",
"description": "Code generator for Angular wrappers for Lit components",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": "https://github.com/lit/lit/issues",
Expand Down Expand Up @@ -52,11 +55,11 @@
},
"dependencies": {
"@lit-labs/analyzer": "^0.2.0",
"@lit-labs/gen-utils": "^0.0.1",
"@lit-internal/tests": "0.0.0"
"@lit-labs/gen-utils": "^0.0.1"
},
"devDependencies": {
"@esm-bundle/chai": "^4.1.5",
"@lit-internal/tests": "0.0.0",
"@types/chai": "^4.0.1",
"@types/mocha": "^9.0.0"
},
Expand Down
6 changes: 4 additions & 2 deletions packages/labs/gen-wrapper-react/package.json
Expand Up @@ -2,6 +2,9 @@
"name": "@lit-labs/gen-wrapper-react",
"description": "Code generator for React wrapper for Lit components",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": "https://github.com/lit/lit/issues",
Expand Down Expand Up @@ -58,8 +61,7 @@
},
"dependencies": {
"@lit-labs/analyzer": "^0.2.0",
"@lit-labs/gen-utils": "^0.0.1",
"@lit-internal/tests": "0.0.0"
"@lit-labs/gen-utils": "^0.0.1"
},
"devDependencies": {
"@lit-internal/tests": "^0.0.0"
Expand Down
3 changes: 3 additions & 0 deletions packages/labs/gen-wrapper-vue/package.json
Expand Up @@ -2,6 +2,9 @@
"name": "@lit-labs/gen-wrapper-vue",
"description": "Code generator for Vue wrapper for Lit components",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"author": "Google LLC",
"license": "BSD-3-Clause",
"bugs": "https://github.com/lit/lit/issues",
Expand Down
7 changes: 3 additions & 4 deletions packages/labs/vue-utils/package.json
@@ -1,7 +1,9 @@
{
"private": true,
"name": "@lit-labs/vue-utils",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"description": "Utilities for generating a Vue component wrapper for a LitElement.",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
Expand Down Expand Up @@ -105,8 +107,5 @@
"devDependencies": {
"@types/trusted-types": "^2.0.2",
"@lit-internal/scripts": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}

0 comments on commit 26cfefd

Please sign in to comment.