Skip to content

Commit

Permalink
some additional cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
AerisG222 committed Dec 23, 2023
1 parent 7bcb191 commit e019b73
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 19 deletions.
4 changes: 0 additions & 4 deletions src/auth/.stylelintrc
Expand Up @@ -17,9 +17,6 @@
}
],
"at-rule-no-vendor-prefix": true,
"block-closing-brace-empty-line-before": null,
"block-closing-brace-newline-after": null,
"block-opening-brace-space-before": null,
"color-named": "never",
"declaration-empty-line-before": null,
"declaration-no-important": true,
Expand All @@ -29,7 +26,6 @@
"function-url-quotes": "always",
"import-notation": "string",
"length-zero-no-unit": true,
"max-line-length": null,
"media-feature-name-no-vendor-prefix": true,
"no-descending-specificity": null,
"no-duplicate-selectors": true,
Expand Down
10 changes: 5 additions & 5 deletions src/auth/package.json
Expand Up @@ -19,11 +19,11 @@
"stylelint-scss": "^6.0.0"
},
"scripts": {
"all": "run-p sass",
"sass": "run-p sass:lint sass:site",
"sass:lint": "stylelint scss/*.scss 2> /dev/null",
"sass:site": "sass --load-path node_modules scss/site.scss wwwroot/css/site.css",
"sass:watch": "chokidar 'scss/**/*.scss' -c 'npm run sass'"
"all": "npx run-p sass",
"sass": "npx run-p sass:lint sass:site",
"sass:lint": "npx stylelint scss/*.scss 2> /dev/null",
"sass:site": "npx sass --load-path node_modules scss/site.scss wwwroot/css/site.css",
"sass:watch": "npx chokidar 'scss/**/*.scss' -c 'npm run sass'"
},
"author": "",
"license": "MIT"
Expand Down
1 change: 1 addition & 0 deletions src/client_apps/webgl_blender_model/package.json
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev_build": "vite build --config vite.config.dev.ts",
Expand Down
1 change: 1 addition & 0 deletions src/client_apps/webgl_cube/package.json
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev_build": "vite build --config vite.config.dev.ts",
Expand Down
1 change: 1 addition & 0 deletions src/client_apps/webgl_shader/package.json
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev_build": "vite build --config vite.config.dev.ts",
Expand Down
1 change: 1 addition & 0 deletions src/client_apps/webgl_text/package.json
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev_build": "vite build --config vite.config.dev.ts",
Expand Down
4 changes: 0 additions & 4 deletions src/www/.stylelintrc
Expand Up @@ -17,9 +17,6 @@
}
],
"at-rule-no-vendor-prefix": true,
"block-closing-brace-empty-line-before": null,
"block-closing-brace-newline-after": null,
"block-opening-brace-space-before": null,
"color-named": "never",
"declaration-empty-line-before": null,
"declaration-no-important": true,
Expand All @@ -30,7 +27,6 @@
"import-notation": "string",
"keyframes-name-pattern": null,
"length-zero-no-unit": true,
"max-line-length": null,
"media-feature-name-no-vendor-prefix": true,
"no-descending-specificity": null,
"no-duplicate-selectors": true,
Expand Down
12 changes: 6 additions & 6 deletions src/www/package.json
Expand Up @@ -4,12 +4,12 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"all": "run-p sass",
"sass": "run-p sass:lint sass:site sass:games",
"sass:lint": "stylelint scss/*.scss 2> /dev/null",
"sass:site": "sass --load-path node_modules scss/site.scss wwwroot/css/site.css",
"sass:games": "sass --load-path node_modules scss/games.scss wwwroot/css/games.css",
"sass:watch": "chokidar 'scss/**/*.scss' -c 'npm run sass'"
"all": "npx run-p sass",
"sass": "npx run-p sass:lint sass:site sass:games",
"sass:lint": "npx stylelint scss/*.scss 2> /dev/null",
"sass:site": "npx sass --load-path node_modules scss/site.scss wwwroot/css/site.css",
"sass:games": "npx sass --load-path node_modules scss/games.scss wwwroot/css/games.css",
"sass:watch": "npx chokidar 'scss/**/*.scss' -c 'npm run sass'"
},
"dependencies": {
"bootstrap": "^5.2.3",
Expand Down

0 comments on commit e019b73

Please sign in to comment.