@localnerve/sass-asset-functions 3.2.0 → 4.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,9 @@
1
1
  # Sass Asset Functions Change Log
2
2
 
3
+ ## 4.0.0
4
+ * Node 16+ (Drop Node 14 Support)
5
+ * Dev dependencies updates
6
+
3
7
  ## 3.2.0
4
8
  * Dependency Update
5
9
  * sass 1.62.1
package/babel.config.json CHANGED
@@ -3,7 +3,7 @@
3
3
  [
4
4
  "@babel/preset-env", {
5
5
  "targets": {
6
- "node": "14"
6
+ "node": "16"
7
7
  }
8
8
  }
9
9
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@localnerve/sass-asset-functions",
3
- "version": "3.2.0",
3
+ "version": "4.0.0",
4
4
  "description": "compass-style asset functions for dart-sass or other sass compilers",
5
5
  "main": "index.js",
6
6
  "exports": {
@@ -52,14 +52,14 @@
52
52
  "sass": "^1.62.1"
53
53
  },
54
54
  "devDependencies": {
55
- "@babel/cli": "^7.21.0",
56
- "@babel/preset-env": "^7.21.4",
57
- "rimraf": "^5.0.0",
55
+ "@babel/cli": "^7.21.5",
56
+ "@babel/preset-env": "^7.21.5",
57
+ "rimraf": "^5.0.1",
58
58
  "jest": "^29.5.0",
59
- "eslint": "^8.39.0",
60
- "node-sass": "^8.0.0"
59
+ "eslint": "^8.41.0",
60
+ "node-sass": "^9.0.0"
61
61
  },
62
62
  "engines": {
63
- "node": ">= 14"
63
+ "node": ">= 16"
64
64
  }
65
65
  }