-
Notifications
You must be signed in to change notification settings - Fork 4
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
✨ use knitjs #4
✨ use knitjs #4
Conversation
Is the node_modules folder supposed to be checked in? |
Can it be named anything besides |
|
you can set
to completely over-ride that if you want to figure out package resolution your self though |
|
I would imagine using node_modules wouldn't play well with quite a few default configs that ignore node_modules e.g. vscode has in the editor: "files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true
},
// ...
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
}, Perhaps we could use linklocal in the postinstall? |
that is really an issue with those tools though - using a heavy handed approach to ignore instead of top level ignore which they should be doing. I get that this is the world we have to develop in, but things like linklocal are really just hacks and work arounds to what You are certainly right that by default many configs do this wrong - even the default github |
|
Reminds me of that Kierkegaard quote about truth always resting with the minority |
@cheapsteak I'm hoping we won't be alone for long though: https://gist.github.com/nolanlawson/457cdb309c9ec5b39f0d420266a9faa4 |
uses knit instead of
buildjs
which means-lerna
and+yarn
I moved cmds into
package.json
so runyarn styles:build
first and thenyarn start
. Also I added eslint but didn't fix any of the errors.