-
-
Notifications
You must be signed in to change notification settings - Fork 53
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
Remove electron references #184
Conversation
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.
one question about name-spacing but this is looking good!
@@ -1,11 +1,18 @@ | |||
{ | |||
"name": "dataproofer", |
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.
interesting! silly question, won't this cause a name conflict with the other package.json named "dataproofer"? https://github.com/dataproofer/Dataproofer/blob/dev/src/package.json#L2
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 also seeing all the tests are failing now hm
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 think it's likely this is that's what is breaking it, maybe it should be dataproofer-cli
"private": true, | ||
"workspaces": [ | ||
"src", | ||
"packages/*" | ||
], | ||
"main": "./src/index.js", | ||
"bin": { | ||
"dataproofer": "./src/index.js" |
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 smart!
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 think you may need to update some of the workflows to get this passing
Should pull in latest yarn version updates |
* docs: update README to remove electron references, use bin cli name * refactor: update package.json with name, version, main script, and bin Referenced https://medium.com/jspoint/creating-cli-executable-global-npm-module-5ef734febe32 * docs: remove reference to beta * docs: tweak template language * docs: update links for monorepo
Summary
Removes references to electron and makes it so that the script can be run by calling
dataproofer file.csv
when installed usingnpm install -g