-
Notifications
You must be signed in to change notification settings - Fork 10
Bugfix/docs entry point #132
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
Conversation
package.json
Outdated
@@ -15,7 +15,7 @@ | |||
"coverage": "nyc --reporter lcov --reporter text node test", | |||
"postcoverage": "dotenv codecov", | |||
"eslint": "eslint 'src/**/*.[tj]s' 'test/**/*.[tj]s'", | |||
"docs": "typedoc --plugin typedoc-plugin-markdown", | |||
"docs": "typedoc --plugin typedoc-plugin-markdown src/index.ts", |
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.
> [email protected] docs /stylelint-declaration-strict-value
> typedoc --plugin typedoc-plugin-markdown src/index.ts
Loaded plugin typedoc-plugin-markdown
Error: /stylelint-declaration-strict-value/src/index.ts(2)
Could not find a declaration file for module 'shortcss'. '/stylelint-declaration-strict-value/node_modules/shortcss/lib/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/shortcss` if it exists or add a new declaration (.d.ts) file containing `declare module 'shortcss';`
Error: /stylelint-declaration-strict-value/src/index.ts(3)
Could not find a declaration file for module 'shortcss/lib/list'. '/stylelint-declaration-strict-value/node_modules/shortcss/lib/list.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/shortcss` if it exists or add a new declaration (.d.ts) file containing `declare module 'shortcss/lib/list';`
Error: /stylelint-declaration-strict-value/src/index.ts(4)
Could not find a declaration file for module 'css-values'. '/stylelint-declaration-strict-value/node_modules/css-values/dist/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/css-values` if it exists or add a new declaration (.d.ts) file containing `declare module 'css-values';
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.
Codecov Report
@@ Coverage Diff @@
## master #132 +/- ##
=======================================
Coverage 94.31% 94.31%
=======================================
Files 3 3
Lines 211 211
Branches 83 83
=======================================
Hits 199 199
Misses 2 2
Partials 10 10
Continue to review full report at Codecov.
|
b666465
to
6b46c96
Compare
This PR should fix the missing
entryPoint
, though declarations file still can't be found bytypedoc
😞typedoc2md/typedoc-plugin-markdown#165