Skip to content

Commit

Permalink
1.4.2
Browse files Browse the repository at this point in the history
- automated clean fix
- updated documentation
  • Loading branch information
andreymatin committed May 12, 2023
1 parent 1ee3584 commit 5a7bd49
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 949 deletions.
6 changes: 5 additions & 1 deletion .gulp/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,13 @@ const cleanDist = () => {
return deleteAsync(['./dist']);
};

const cleanStyles = () => {
return deleteAsync(['./reset.scss', '_total-reset.scss', 'total-reset.css', '_typography.scss', '_variables.scss', 'main.scss']);
};

const cleanHTML = () => {
return deleteAsync(['./dist/layouts', './build/layouts']);
};


export { openServer, openBrowser, bumper, cleanBuild, cleanDist, cleanHTML };
export { openServer, openBrowser, bumper, cleanBuild, cleanDist, cleanHTML, cleanStyles };
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

# [1.4.2]

- automated clean fix
- updated documentation

# [1.4.1]

- doc misspelling fixes and updates
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,19 @@ or:
@use '../node_modules/scss-reset/_reset.scss';
```

or shorter:
or by (mostly) depricated way:

```scss
@use 'scss-reset/_reset.scss';
@import 'scss-reset/reset';
```


## CDN

Optimized and compressed CSS version for _reset.scss

```html
<link rel="stylesheet" href="https://unpkg.com/scss-reset/build/reset.css">
<link rel="stylesheet" href="https://unpkg.com/scss-reset/reset.css">
```

Transferred size: 3.62 kB
Expand Down Expand Up @@ -118,7 +119,7 @@ where need to ❗deep reset all properties of the ❗Shadow DOM elements without
Please include into necessary module:

```scss
@use 'scss-reset/reset-mixins';
@use 'scss-reset/reset-mixins' as *;
```

### Mixins List
Expand Down
237 changes: 0 additions & 237 deletions _total-reset.scss

This file was deleted.

68 changes: 0 additions & 68 deletions _typography.scss

This file was deleted.

Loading

0 comments on commit 5a7bd49

Please sign in to comment.