gerillass 1.3.0 → 1.3.2

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +12 -9
package/README.md CHANGED
@@ -21,6 +21,7 @@ Hope you’ll enjoy using it!
21
21
 
22
22
  ## Table of Contents
23
23
 
24
+ - [Dart Sass Upgrade](#dart-sass-upgrade)
24
25
  - [Installation](#installation)
25
26
  - [Node.js Installation](#nodejs-installation)
26
27
  - [Using with React.js](#using-with-reactjs)
@@ -35,6 +36,11 @@ Hope you’ll enjoy using it!
35
36
  - [License](#license)
36
37
  - [Additional Info](#additional-info)
37
38
 
39
+ ## Dart Sass Upgrade
40
+ _We are saying goodbye to LibSass with version 1.3.0_ :cry:
41
+
42
+ Because LibSass and the packages built on it, including Node Sass, are deprecated, **Gerillass will no longer support LibSass since version 1.3.0** If you're having a problem running Gerillass v1.3.0 please consider using Dart Sass instead of LibSass. If you are running Dart Sass already, you can install and use Gerillass 1.3.0 and later versions safely. If not, however, please use the earlier versions.
43
+
38
44
  ## Installation
39
45
 
40
46
  npm install gerillass --save-dev
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "author": "Halil İbrahim Çakıroğlu",
7
7
  "main": "scss/_gerillass.scss",
8
8
  "license": "Apache-2.0",
9
- "version": "1.3.0",
9
+ "version": "1.3.2",
10
10
  "repository": {
11
11
  "type": "git",
12
12
  "url": "https://github.com/selfishprimate/gerillass"
@@ -40,16 +40,19 @@
40
40
  "test": "jest"
41
41
  },
42
42
  "dependencies": {
43
- "glob": "^7.2.0",
44
- "jest": "^27.5.1",
45
- "sass": "^1.49.7",
46
- "sass-loader": "^12.5.0",
47
- "sass-true": "^6.0.1"
43
+ "glob": "^11.0.0",
44
+ "jest": "^30.0.5",
45
+ "sass": "^1.90.0",
46
+ "sass-loader": "^16.0.3",
47
+ "sass-true": "^9.0.0"
48
48
  },
49
49
  "devDependencies": {
50
- "gulp": "^4.0.2",
50
+ "gulp": "^5.0.1",
51
51
  "gulp-concat": "^2.6.1",
52
- "gulp-header": "^2.0.9",
53
- "gulp-replace": "^1.0.0"
52
+ "gulp-replace": "^1.1.4"
53
+ },
54
+ "resolutions": {
55
+ "braces": ">=3.0.3",
56
+ "micromatch": ">=4.0.8"
54
57
  }
55
58
  }