-
Notifications
You must be signed in to change notification settings - Fork 393
Replace grunt with npm scripts (post BS5) #4591
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
base: dev
Are you sure you want to change the base?
Changes from 6 commits
b455e5d
fc6b753
34bae4d
701b109
d952f67
8067ca4
077f5ea
00035b1
aa75835
4fc37ef
ef4e7f4
47f7db3
8b199a3
d974d2f
b910754
42931a3
a136e47
2a63593
0f1217f
14721dd
b95905e
9d8dc21
ab2c354
0108ab4
1532a3f
9bfeea3
124f548
2590aff
9086e4e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ process.argv.forEach(arg => { | |
| console.log('Copying dependencies...'); | ||
|
|
||
| // Bootstrap 5 | ||
| await cp('node_modules/bootstrap/scss/.', 'scss/vendor/bootstrap/', { recursive: true }); | ||
| await cp('node_modules/bootstrap/scss/.', 'scss/vendor/bootstrap/scss/', { recursive: true }); | ||
|
Member
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. Do we really need the double scss in the path?
Contributor
Author
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. Yes, for the new scss compiler which tries to resolve the Bootstrap dependencies in this folder.
Member
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. If we can't avoid this change, I imagine we'll need to commit the result of moving those files, won't we? |
||
|
|
||
| if (buildDepsOnly) { | ||
| console.log('Done copying build dependencies.'); | ||
|
|
||
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.
If we're not using wildcards, could we just revert to
npm run install:scss-dependencies ; npm run build:scssso we can eliminate thenpm-run-all2dependency? If you strongly feel that it's useful, I don't mind having it, but if it's not essential, it's always nice to minimize dependencies.