Skip to content

Commit

Permalink
Moved extensions to their own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaydek Michels-Gualtieri committed Dec 19, 2020
1 parent d1f0116 commit c0fcb5d
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 10 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"duomo.scss"
],
"scripts": {
"watch": "nodemon --exec 'sass --style=compressed --no-charset --no-source-map src/consumer.scss dist/development.css && yarn prettier --write dist/development.css' --ext css,scss --watch src",
"watch": "nodemon --exec 'sass --no-charset --no-source-map --style=compressed src/consumer.scss dist/development.css && yarn prettier --write dist/development.css' --ext css,scss --watch src",
"test": "jest",
"build-duomo-dev": "sass --style=compressed --no-charset --no-source-map builds/development.scss dist/development.css && yarn prettier -w dist/development.css",
"build-duomo-dev-full": "sass --style=compressed --no-charset --no-source-map builds/development-full.scss dist/development-full.css && yarn prettier -w dist/development-full.css",
"build-duomo-prod": "sass --style=compressed --no-charset --no-source-map builds/production.scss dist/production.css",
"build-duomo-prod-full": "sass --style=compressed --no-charset --no-source-map builds/production-full.scss dist/production-full.css",
"build-duomo-dev": "sass --no-charset --no-source-map --style=compressed builds/development.scss dist/development.css && yarn prettier -w dist/development.css",
"build-duomo-dev-full": "sass --no-charset --no-source-map --style=compressed builds/development-full.scss dist/development-full.css && yarn prettier -w dist/development-full.css",
"build-duomo-prod": "sass --no-charset --no-source-map --style=compressed builds/production.scss dist/production.css",
"build-duomo-prod-full": "sass --no-charset --no-source-map --style=compressed builds/production-full.scss dist/production-full.css",
"build": "yarn rimraf dist && yarn tsc && yarn build-duomo-dev && yarn build-duomo-dev-full && yarn build-duomo-prod && yarn build-duomo-prod-full",
"publish-dist-dry-run": "yarn build && npm publish --dry-run"
},
Expand Down
11 changes: 6 additions & 5 deletions src/duomo/builder-build-duomo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,17 @@

@use "helpers" as *;

@use "core/aspect-ratio" as *;
@use "core/background-color" as *;
@use "core/border-color" as *;
@use "core/border-radius" as *;
@use "core/border-width" as *;
@use "core/box-shadow" as *;
@use "core/color" as *;
@use "core/container" as *;
@use "core/font-family" as *;
@use "core/font-size" as *;
@use "core/font-style" as *;
@use "core/font-weight" as *;
@use "core/group" as *;
@use "core/height" as *;
@use "core/hidden" as *;
@use "core/letter-spacing" as *;
@use "core/line-height" as *;
@use "core/margin" as *;
Expand All @@ -29,7 +25,6 @@
@use "core/padding" as *;
@use "core/pointer-events" as *;
@use "core/position" as *;
@use "core/stacks" as *;
@use "core/text-align" as *;
@use "core/text-decoration" as *;
@use "core/transform" as *;
Expand All @@ -39,6 +34,12 @@
@use "core/width" as *;
@use "core/z-index" as *;

@use "extensions/aspect-ratio" as *;
@use "extensions/container" as *;
@use "extensions/group" as *;
@use "extensions/hidden" as *;
@use "extensions/stacks" as *;

@use "configuration";

// NOTE: Dart Sass does not support dynamic mixin invocations.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c0fcb5d

Please sign in to comment.