-
Notifications
You must be signed in to change notification settings - Fork 531
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
dev: add definitions.json generation script #2826
base: main
Are you sure you want to change the base?
Changes from 9 commits
16b2b60
e9c9441
c7b72a2
b0ea5fb
3e1756d
406ad49
5d7c1a5
9c9ac7f
6267de4
85f0f64
f5fe4fe
b96cdc3
7ec1ff5
5e4e4b3
ee5bae5
aca417c
c6fd141
0bc8a10
be3f11f
9abd99a
5922565
da40b84
0e6a5ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,8 @@ | |
"prepublishOnly": "npm test", | ||
"test": "npm run build && jest --verbose false --silent=false ./test/*.test.ts", | ||
"test:browser": "npm run build && karma start ./karma.config.js", | ||
"lint": "eslint . --ext .ts --ext .test.js" | ||
"lint": "eslint . --ext .ts --ext .test.js", | ||
"generateDefinitions": "node ./tools/generateDefinitions.js" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When I tried to run this npm script, I got this error message. How should I run it?
However, explicitly mentioning the script works as intended: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to run it at the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correction: Developers need to run it from |
||
}, | ||
"keywords": [ | ||
"ripple", | ||
|
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.
Unrelated to this PR: There are no
*.test.js
files in this sub-directory tree.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.
IMO this should stay in case there are any in the future.