Skip to content

Commit 67dd843

Browse files
authored
Merge pull request #109 from mlutcss/perf/bundle-sass-for-web
Optimize web version
2 parents 400cbb0 + bb87436 commit 67dd843

File tree

12 files changed

+99
-475
lines changed

12 files changed

+99
-475
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,5 @@ jobs:
3333
run: npm run lint
3434
- name: Test
3535
run: npm test
36-
env:
37-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3836
- name: Test plugins
3937
run: npm run test:plugins

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ test/plugins/*/dist
1010
docs/styleguide
1111
docs/content/generate.css
1212

13+
packages/core/src/sass/index.d.ts
14+
packages/core/src/sass/index.js
1315
packages/*/dist
1416

1517
node_modules

package-lock.json

Lines changed: 1 addition & 328 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"build:core": "npm run build --workspace=@mlut/core",
1717
"build:plugins": "npm run build --workspace=@mlut/plugins",
1818
"test:plugins": "vite build -c test/plugins/vite/vite.config.js && webpack -c test/plugins/webpack/webpack.config.js && rollup --config test/plugins/rollup/rollup.config.js",
19-
"lint": "npx eslint packages/*/src/ && npx stylelint packages/core/src/sass --ip packages/core/src/sass/tools/mixins/base/_mk-ar.scss",
19+
"lint": "npx eslint packages/*/src/**/*.ts && npx stylelint packages/core/src/sass --ip packages/core/src/sass/tools/mixins/base/_mk-ar.scss",
2020
"test": "export NODE_ENV=test && mocha test/sass/index.js && mocha"
2121
},
2222
"devDependencies": {

0 commit comments

Comments
 (0)