Skip to content

Commit 38f0c93

Browse files
committed
v4.0.4
1 parent 97b657b commit 38f0c93

File tree

6 files changed

+370
-401
lines changed

6 files changed

+370
-401
lines changed

.sassdocrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ groups:
5858

5959
herman:
6060
sass:
61-
includePaths: ['sass']
61+
sassOptions:
62+
loadPaths: ['sass']
6263
use: ['tools', 'sass:meta']
6364
extraDocs:
6465
- name: 'Changelog'

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Accoutrement Changelog
22

3-
## UNRELEASED
3+
## 4.0.4 - 12/14/22
44

55
- 🏠 INTERNAL: Remove documentation from npm package
6+
- 🏠 INTERNAL: Upgrade dev dependencies
67

78
## 4.0.3 - 07/20/22
89

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "accoutrement",
33
"title": "Accoutrement",
4-
"version": "4.0.3",
4+
"version": "4.0.4",
55
"description": "Sass design-systems management and utilities.",
66
"homepage": "https://www.oddbird.net/accoutrement/",
77
"type": "module",
@@ -45,17 +45,17 @@
4545
},
4646
"devDependencies": {
4747
"chokidar-cli": "^3.0.0",
48-
"mocha": "^10.0.0",
48+
"mocha": "^10.2.0",
4949
"npm-run-all": "^4.1.5",
50-
"postcss": "^8.4.14",
51-
"prettier": "^2.7.1",
52-
"sass": "^1.53.0",
53-
"sass-true": "^6.1.0",
50+
"postcss": "^8.4.20",
51+
"prettier": "2.8.0",
52+
"sass": "^1.56.2",
53+
"sass-true": "^7.0.0",
5454
"sassdoc": "^2.7.4",
55-
"sassdoc-theme-herman": "^4.0.2",
56-
"stylelint": "^14.9.1",
57-
"stylelint-config-prettier": "^9.0.3",
58-
"stylelint-config-standard-scss": "^5.0.0",
55+
"sassdoc-theme-herman": "^5.0.0",
56+
"stylelint": "^14.16.0",
57+
"stylelint-config-prettier": "^9.0.4",
58+
"stylelint-config-standard-scss": "^6.1.0",
5959
"stylelint-prettier": "^2.0.0"
6060
},
6161
"eyeglass": {

sass/type/_helpers.scss

+1
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ $FONT-FORMATS: (
311311

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

316317
@if ($format == 'local') or $has-data {

test/test_sass.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ import sassTrue from 'sass-true';
55
const __dirname = path.dirname(fileURLToPath(import.meta.url));
66
const sassFile = path.join(__dirname, '.', 'index.scss');
77

8-
sassTrue.runSass({ file: sassFile }, { describe, it });
8+
sassTrue.runSass({ describe, it }, sassFile);

0 commit comments

Comments
 (0)