Skip to content

Commit e24664b

Browse files
author
Michael Vurchio
committed
Merge branch 'release/1.3.1'
2 parents fdea659 + bf2a726 commit e24664b

File tree

5 files changed

+144
-49
lines changed

5 files changed

+144
-49
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# Svelte preprocess CSS Modules, changelog
22

3+
## 1.3.1 (Nov 22, 2020)
4+
Add support for old version of nodes (node 8 & node 10 tested)
5+
36
## 1.3.0 (Nov 22, 2020)
4-
- Feature: CSS Modules from imports
5-
- Fix: *global selector* Regex is now working with an attached bracket to the selector (missing space was throwing an error) `.myclass{ }`
6-
- Dev: use of typescript, set up eslint and prettier
7+
8+
### Feature
9+
Apply CSS Modules from imported stylesheets
10+
11+
### Fixes
12+
*global selector* Regex is now working with an attached bracket to the selector (missing space was throwing an error) `.myclass{ }`
13+
14+
### Plugin Development
15+
Set up typescript, eslint and prettier
716

817
## 1.2.1 (Oct 31, 2020)
918
- Fix class chaining and pseudo selector [pull request #8](https://github.com/micantoine/svelte-preprocess-cssmodules/pull/8)

package-lock.json

Lines changed: 113 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte-preprocess-cssmodules",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Svelte preprocessor to generate CSS Modules classname on Svelte components",
55
"keywords": [
66
"svelte",
@@ -45,11 +45,14 @@
4545
]
4646
},
4747
"dependencies": {
48-
"loader-utils": "^2.0.0"
48+
"@types/object.fromentries": "^2.0.0",
49+
"loader-utils": "^2.0.0",
50+
"object.fromentries": "^2.0.2",
51+
"string.prototype.matchall": "^4.0.3"
4952
},
5053
"devDependencies": {
51-
"@types/cssesc": "^3.0.0",
5254
"@types/loader-utils": "^2.0.1",
55+
"@types/string.prototype.matchall": "^4.0.0",
5356
"@typescript-eslint/eslint-plugin": "^4.4.0",
5457
"@typescript-eslint/parser": "^4.4.0",
5558
"eslint": "^7.10.0",
@@ -64,7 +67,7 @@
6467
"typescript": "^4.0.3"
6568
},
6669
"peerDependencies": {
67-
"svelte": "3.20.0",
70+
"svelte": "^3.20.0",
6871
"typescript": "^4.0.0"
6972
},
7073
"files": [

0 commit comments

Comments
 (0)