-
Notifications
You must be signed in to change notification settings - Fork 14
Description
I have project which use bootstrap. After install all necessary packages I wanted to migrate bootstrap scss files.
Example from my package.json:
"postinstall": "npm run migrate-bootstrap-sass", "migrate-bootstrap-sass": "sass-migrator division ../../../node_modules/bootstrap/scss/*.scss"
also I tried
"migrate-bootstrap-sass": "sass-migrator division ../../../node_modules/bootstrap/**/*.scss"
In both cases, migration does not work for me.
File by file migration works fine (you can see an example below).
"postinstall": "npm run migrate-bootstrap-bootstrap-grid && npm run migrate-bootstrap-variables ", "migrate-bootstrap-bootstrap-grid": "sass-migrator division ../../../node_modules/bootstrap/scss/bootstrap-grid.scss" "migrate-bootstrap-variables": "sass-migrator division ../../../node_modules/bootstrap/scss/_variables.scss"
I am using "sass-migrator": "^1.5.1", and my OS is Windows 10.
Please any help.