Skip to content

Commit

Permalink
chore: fix strange crash on build:less task for site workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
ala-n committed Feb 27, 2024
1 parent 381995e commit 281e39e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"build:less:cpy": "copyfiles \"src/**/*.less\" \".\" --up 1 --all",
"build:less:css": "foreach -x \"lessc #{path} #{dir}/#{name}.css\" -i \"**/*.mixin.less\" -g \"modules/{*,*/*,{esl-utils,esl-forms}/*/*}.less\"",
"build:docs": "copyfiles \"src/**/*.md\" \".\" --up 1 --all",
"watch": "concurrently \"npm run watch:less\" \"npm run watch:ts\"",
"watch": "concurrently npm:watch:*",
"watch:ts": "tsc --project tsconfig.build.json --watch",
"watch:less": "chokidar --initial \"src/**/*.less\" -c \"npm run build:less\"",
"test": "concurrently \"npm run lint\" \"npm run test:unit\"",
Expand All @@ -75,7 +75,7 @@
"test:e2e:update": "npm run run:update --workspace e2e",
"test:unit": "jest --silent --noStackTrace",
"test:report": "jest --coverage",
"lint": "concurrently \"npm run lint:js\" \"npm run lint:css\" && node build/catlog.js \"Linting passed\"",
"lint": "concurrently npm:lint:* && node build/catlog.js \"Linting passed\"",
"lint:js": "eslint \"src/**/*.ts\" \"site/src/**/*.ts\" --max-warnings 3",
"lint:css": "stylelint \"src/**/*.less\" \"site/src/**/*.less\"",
"prepare": "husky && npm run build",
Expand Down
2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"run:eleventy:e2e": "eleventy --serve -- --env=e2e",
"build": "npm run clean && concurrently \"npm run build:ts\" \"npm run build:less && npm run minify:css\" && npm run build:eleventy",
"build:ts": "webpack --mode=production",
"build:less": "concurrently --kill-others \"npm run build:less:site\" \"npm run build:less:lib\" \"npm run build:less:e2e\"",
"build:less": "concurrently npm:build:less:*",
"build:less:e2e": "lessc \"src/e2e.less\" \"dist/bundles/e2e.css\" --source-map=dist/bundles/e2e.css.map",
"build:less:site": "lessc \"src/localdev.less\" \"dist/bundles/localdev.css\" --source-map=dist/bundles/localdev.css.map",
"build:less:lib": "lessc \"src/playground/export/lib.less\" \"dist/bundles/lib.css\" --source-map=dist/bundles/lib.css.map",
Expand Down

0 comments on commit 281e39e

Please sign in to comment.