Skip to content

Commit

Permalink
v4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jgerigmeyer committed Dec 14, 2022
1 parent 97b657b commit 38f0c93
Show file tree
Hide file tree
Showing 6 changed files with 370 additions and 401 deletions.
3 changes: 2 additions & 1 deletion .sassdocrc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ groups:

herman:
sass:
includePaths: ['sass']
sassOptions:
loadPaths: ['sass']
use: ['tools', 'sass:meta']
extraDocs:
- name: 'Changelog'
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Accoutrement Changelog

## UNRELEASED
## 4.0.4 - 12/14/22

- 🏠 INTERNAL: Remove documentation from npm package
- 🏠 INTERNAL: Upgrade dev dependencies

## 4.0.3 - 07/20/22

Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "accoutrement",
"title": "Accoutrement",
"version": "4.0.3",
"version": "4.0.4",
"description": "Sass design-systems management and utilities.",
"homepage": "https://www.oddbird.net/accoutrement/",
"type": "module",
Expand Down Expand Up @@ -45,17 +45,17 @@
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"mocha": "^10.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"sass-true": "^6.1.0",
"postcss": "^8.4.20",
"prettier": "2.8.0",
"sass": "^1.56.2",
"sass-true": "^7.0.0",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^4.0.2",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^5.0.0",
"sassdoc-theme-herman": "^5.0.0",
"stylelint": "^14.16.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-prettier": "^2.0.0"
},
"eyeglass": {
Expand Down
1 change: 1 addition & 0 deletions sass/type/_helpers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ $FONT-FORMATS: (

@if (not string.index($eot, 'data:')) {
@each $format, $url in $data {
// stylelint-disable-next-line annotation-no-unknown
$has-data: (($format != 'local') and string.index($url, 'data:'));

@if ($format == 'local') or $has-data {
Expand Down
2 changes: 1 addition & 1 deletion test/test_sass.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ import sassTrue from 'sass-true';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const sassFile = path.join(__dirname, '.', 'index.scss');

sassTrue.runSass({ file: sassFile }, { describe, it });
sassTrue.runSass({ describe, it }, sassFile);
Loading

0 comments on commit 38f0c93

Please sign in to comment.