Skip to content

Commit 5569f2d

Browse files
committed
removed private flag and fixed package.json
1 parent ae4ae38 commit 5569f2d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ component(myElement, [style]);
118118

119119
Add some test and document what you've done. That's it :D
120120

121+
### Install
122+
123+
Add `"private": true` to the package.json to support `yarn workspaces`.
124+
125+
`yarn install`
126+
121127
### Start
122128

123129
You can try out ur changes with the command `yarn start:app:ts` or you can test how it works with js either `yarn start:app:js`. Before runninf the JS app, do not forget to create a new version locally with `yarn build && yarn pack` command.

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
"module": "dist/index.js",
77
"types": "dist/index.d.ts",
88
"license": "MIT",
9-
"private": true,
109
"workspaces": [
1110
"ts-component-tests",
1211
"js-component-tests"
1312
],
1413
"homepage": "https://github.com/icsaba/lit-functions",
15-
"repository": "https://github.com/icsaba/lit-functions.git",
14+
"repository": {
15+
"type": "git",
16+
"url": "git+https://github.com/icsaba/lit-functions.git"
17+
},
1618
"files": [
1719
"dist"
1820
],

0 commit comments

Comments
 (0)