-
Notifications
You must be signed in to change notification settings - Fork 47
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
build: Add cross-env for platform independent build #33
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
.gitignore
Outdated
@@ -25,3 +25,4 @@ | |||
npm-debug.log* | |||
yarn-debug.log* | |||
yarn-error.log* | |||
yarn.lock |
This comment was marked as duplicate.
This comment was marked as duplicate.
Sorry, something went wrong.
package.json
Outdated
"test:code": "eslint --max-warnings=0 --ext .js,.ts,.tsx ." | ||
}, | ||
"dependencies": { | ||
"@excalidraw/markdown-to-text": "0.1.2", | ||
"mermaid": "10.2.3", | ||
"nanoid": "4.0.2" | ||
"nanoid": "4.0.2", | ||
"cross-env": "^7.0.3" |
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.
"cross-env": "^7.0.3" | |
"cross-env": "7.0.3" |
lets lock the exact version so everyone has exact same build when developing
package.json
Outdated
@@ -40,7 +41,8 @@ | |||
"parcel": "2.9.1", | |||
"prettier": "2.8.8", | |||
"process": "0.11.10", | |||
"typescript": "5.2.2" | |||
"typescript": "5.2.2", | |||
"rimraf": "^5.0.5" |
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.
"rimraf": "^5.0.5" | |
"rimraf": "5.0.5" |
lets lock the exact version so everyone has exact same build when developing
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.
Thanks @zsviczian ✨
The current configuration does not build on windows. With these changes it does.