Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b24051e
move some build logic to nx-infra-plugin
GoodDayForSurf Apr 29, 2026
df871d0
add scss-build to nx-infra-plugin
GoodDayForSurf Apr 29, 2026
d24aa0a
build:themes and build:themes-dev are implemented as nx-infra-plugin …
GoodDayForSurf Apr 29, 2026
93b86d6
move watching mode from gulp to nx-infra-plugin executor,
GoodDayForSurf Apr 29, 2026
4b31bab
remove gulp from devextreme-scss
GoodDayForSurf Apr 29, 2026
87774e3
add tests
GoodDayForSurf Apr 29, 2026
19a309d
fix executor for dex-scss
GoodDayForSurf Apr 30, 2026
bd60927
fix review comments
GoodDayForSurf May 5, 2026
c6aee46
clean code
GoodDayForSurf May 6, 2026
8e289f4
refactor and optimization
GoodDayForSurf May 13, 2026
227bb51
devextreme-scss build refactor
GoodDayForSurf May 19, 2026
16a1a21
Merge branch '26_1' of https://github.com/DevExpress/DevExtreme into …
GoodDayForSurf May 26, 2026
dfb4d00
fix lint
GoodDayForSurf May 26, 2026
0c361c4
Merge branch '26_1' into chore/migrate-devextreme-scss-to-nx
GoodDayForSurf May 27, 2026
3ad16a6
Merge branch '26_1' into chore/migrate-devextreme-scss-to-nx
GoodDayForSurf May 27, 2026
cd46d19
fix review notes
GoodDayForSurf May 27, 2026
8622740
Merge branch '26_1' of https://github.com/DevExpress/DevExtreme into …
GoodDayForSurf May 27, 2026
00b35ae
Merge branch '26_1' into chore/migrate-devextreme-scss-to-nx
GoodDayForSurf Jun 1, 2026
df85256
Merge branch '26_1' into chore/migrate-devextreme-scss-to-nx
GoodDayForSurf Jun 1, 2026
d231abc
Merge branch '26_1' into chore/migrate-devextreme-scss-to-nx
GoodDayForSurf Jun 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/themebuilder_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Build etalon bundles
working-directory: ./packages/devextreme-scss
run: pnpm exec gulp style-compiler-themes-ci
run: pnpm nx build:ci devextreme-scss

- name: Build
working-directory: ./packages/devextreme-themebuilder
Expand Down
46 changes: 0 additions & 46 deletions packages/devextreme-scss/build/gulp-data-uri.js

This file was deleted.

164 changes: 0 additions & 164 deletions packages/devextreme-scss/build/style-compiler.js

This file was deleted.

40 changes: 0 additions & 40 deletions packages/devextreme-scss/gulpfile.js

This file was deleted.

14 changes: 2 additions & 12 deletions packages/devextreme-scss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,17 @@
"type": "module",
"devDependencies": {
"clean-css": "5.3.3",
"del": "2.2.2",
"gulp": "4.0.2",
"gulp-autoprefixer": "10.0.0",
"gulp-cache": "1.1.3",
"gulp-plumber": "1.2.1",
"gulp-replace": "0.6.1",
"gulp-sass": "6.0.1",
"gulp-shell": "0.8.0",
"minimist": "1.2.8",
"sass-embedded": "1.93.3",
"stylelint": "15.11.0",
"stylelint-config-standard-scss": "9.0.0",
Comment on lines 4 to 8
"stylelint-scss": "6.10.0",
"through2": "2.0.5",
"ts-jest": "29.1.2"
},
"scripts": {
"build": "gulp",
"build": "pnpm nx build devextreme-scss",
"lint": "stylelint scss/widgets",
"test": "jest --no-coverage --runInBand --config=./tests/jest.config.json",
"watch": "gulp watch"
"watch": "pnpm nx run devextreme-scss --target=watch"
},
"version": "26.1.2"
}
Loading