From 741170bdd913c52ef09709ada8c8060afaa67b4f Mon Sep 17 00:00:00 2001 From: Xiaofan Wu Date: Wed, 15 Jun 2022 10:22:37 +1000 Subject: [PATCH] fix: rename scss file starts with _ --- src/index.js | 6 ++---- .../{_bootstrap-custom.scss => bootstrap-custom.scss} | 0 src/styles/{_icheck-custom.scss => icheck-custom.scss} | 0 3 files changed, 2 insertions(+), 4 deletions(-) rename src/styles/{_bootstrap-custom.scss => bootstrap-custom.scss} (100%) rename src/styles/{_icheck-custom.scss => icheck-custom.scss} (100%) diff --git a/src/index.js b/src/index.js index 74e4e1161..63138692b 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ -import './styles/_bootstrap-custom.scss'; -import './styles/_icheck-custom.scss'; +import './styles/bootstrap-custom.scss'; +import './styles/icheck-custom.scss'; import { registerLocale } from 'react-datepicker'; @@ -73,8 +73,6 @@ import TreePickerNav from './components/TreePicker/Nav'; import TreePickerNode from './components/TreePicker/Node'; import UserListPicker from './components/UserListPicker'; import VerticalNav from './components/VerticalNavigation'; -import './styles/_bootstrap-custom.scss'; -import './styles/_icheck-custom.scss'; export { Accordion, diff --git a/src/styles/_bootstrap-custom.scss b/src/styles/bootstrap-custom.scss similarity index 100% rename from src/styles/_bootstrap-custom.scss rename to src/styles/bootstrap-custom.scss diff --git a/src/styles/_icheck-custom.scss b/src/styles/icheck-custom.scss similarity index 100% rename from src/styles/_icheck-custom.scss rename to src/styles/icheck-custom.scss