-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tags to ComponentDoc #307
Conversation
6de37a0
to
ebf4f26
Compare
package.json
Outdated
@@ -9,6 +9,7 @@ | |||
"scripts": { | |||
"precommit": "lint-staged", | |||
"tsc": "tsc", | |||
"postinstall": "tsc --outDir ./lib", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you explain, why it's a good idea, to have this postinstall
script here? I thought it's run after npm install
which doesn't seem to make too much sense or am I missing something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry about that, I was using that Github fork for my own project hence why I have a postInstall script there. I have since removed it.
tsconfig.json
Outdated
@@ -4,6 +4,7 @@ | |||
"lib": ["es5", "es6"], | |||
"target": "es5", | |||
"strict": true, | |||
"noImplicitAny": false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It had taken a lot of effort to fix all things to enable this and make our code safer. Why we should disable it now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have removed that line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, my mistake, I thought you change it. Sorry about that.
5e2dbf3
to
15ee5f2
Compare
15ee5f2
to
50e2000
Compare
50e2000
to
52a1062
Compare
It is proposed that the tagMap object be present in ComponentDoc. This can help developers use any tags to customize or filter the components.