@localnerve/sass-asset-functions 4.14.5 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Sass Asset Functions Change Log
2
2
 
3
+ ## 5.0.0
4
+ * node 18+
5
+ * sass 1.77.6
6
+ * eslint 9+
7
+
8
+ ## 4.14.0
9
+ * sass 1.77.1
10
+
11
+ ## 4.13.0
12
+ * sass 1.76.0
13
+
14
+ ## 4.12.0
15
+ * sass 1.75.0
16
+
3
17
  ## 4.11.0
4
18
  * sass 1.74.1
5
19
  * Development dependency updates
package/babel.config.json CHANGED
@@ -3,7 +3,7 @@
3
3
  [
4
4
  "@babel/preset-env", {
5
5
  "targets": {
6
- "node": "16"
6
+ "node": "18"
7
7
  }
8
8
  }
9
9
  ]
@@ -0,0 +1,38 @@
1
+ import js from '@eslint/js';
2
+ import globals from 'globals';
3
+ import jest from 'eslint-plugin-jest';
4
+
5
+ export default [{
6
+ name: 'global',
7
+ ignores: [
8
+ 'cjs/**',
9
+ 'coverage/**',
10
+ 'tmp/**',
11
+ 'node_modules/**'
12
+ ]
13
+ }, {
14
+ name: 'lib-test-package',
15
+ files: [
16
+ '*.js',
17
+ 'lib/**',
18
+ '__test-package__/**'
19
+ ],
20
+ rules: js.configs.recommended.rules,
21
+ languageOptions: {
22
+ globals: {
23
+ ...globals.node
24
+ }
25
+ }
26
+ }, {
27
+ name: 'tests',
28
+ files: [
29
+ '__tests__/**'
30
+ ],
31
+ ...jest.configs['flat/recommended'],
32
+ rules: {
33
+ ...jest.configs['flat/recommended'].rules,
34
+ 'jest/no-done-callback': 'off',
35
+ 'jest/expect-expect': 'off',
36
+ 'jest/valid-title': 'off'
37
+ }
38
+ }];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@localnerve/sass-asset-functions",
3
- "version": "4.14.5",
3
+ "version": "5.0.0",
4
4
  "description": "compass-style asset functions for dart-sass or other sass compilers",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -57,14 +57,17 @@
57
57
  "devDependencies": {
58
58
  "@babel/cli": "^7.24.7",
59
59
  "@babel/preset-env": "^7.24.7",
60
- "eslint": "^8.57.0",
61
- "glob": "^10.4.1",
60
+ "@eslint/js": "^9.5.0",
61
+ "eslint": "^9.5.0",
62
+ "eslint-plugin-jest": "^28.6.0",
63
+ "glob": "^10.4.2",
64
+ "globals": "^15.6.0",
62
65
  "jest": "^29.7.0",
63
66
  "node-sass": "^9.0.0",
64
67
  "rimraf": "^5.0.7",
65
- "tar": "^7.2.0"
68
+ "tar": "^7.4.0"
66
69
  },
67
70
  "engines": {
68
- "node": ">= 16"
71
+ "node": ">=18"
69
72
  }
70
73
  }
package/.eslintrc.json DELETED
@@ -1,15 +0,0 @@
1
- {
2
- "parserOptions": {
3
- "ecmaVersion": "latest",
4
- "sourceType": "module"
5
- },
6
- "env": {
7
- "node": true
8
- },
9
- "extends": [
10
- "eslint:recommended"
11
- ],
12
- "rules": {
13
- "no-console": 0
14
- }
15
- }