diff --git a/.wpmrc.js b/.wpmrc.js index 70619764..646688c4 100644 --- a/.wpmrc.js +++ b/.wpmrc.js @@ -1,5 +1,5 @@ module.exports = { - allowBranch: ['main', 'release-auto-*'], + allowBranch: ['develop', 'release-auto-*'], bumpFiles: ['package.json', 'package-lock.json', 'packages/grid/package.json'], skip: { confirm: true diff --git a/packages/grid/src/styles.scss b/packages/grid/src/styles/styles.scss similarity index 97% rename from packages/grid/src/styles.scss rename to packages/grid/src/styles/styles.scss index f5f0bfe6..1f8ba746 100644 --- a/packages/grid/src/styles.scss +++ b/packages/grid/src/styles/styles.scss @@ -1,7 +1,7 @@ /* You can add global styles to this file, and also import other style files */ @use 'ngx-tethys/styles/index.scss'; @use 'ngx-tethys/styles/variables.scss'; -@use './components/cell-editors/cell-editor.scss'; +@use '../components/cell-editors/cell-editor.scss'; .ai-table-grid { display: table; diff --git a/src/styles.scss b/src/styles.scss index 56fb7b40..c49f1206 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -1,4 +1,4 @@ /* You can add global styles to this file, and also import other style files */ -@import '../packages/grid/src/styles.scss'; +@import '../packages/grid/src/styles/styles.scss'; @import './app/app.component.scss'; \ No newline at end of file