eslint-plugin-vue-scoped-css 2.1.0 → 2.2.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.
@@ -70,7 +70,7 @@ class Template {
70
70
  if (node.type === "TemplateLiteral") {
71
71
  const elements = [];
72
72
  for (const element of node.quasis) {
73
- elements.push(element.value.cooked);
73
+ elements.push(element.value.cooked || element.value.raw);
74
74
  elements.push(new interpolation_1.Interpolation("${}"));
75
75
  }
76
76
  elements.pop();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-vue-scoped-css",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "ESLint plugin for Scoped CSS in Vue.js",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -69,7 +69,7 @@
69
69
  "eslint-plugin-regexp": "^1.0.0",
70
70
  "eslint-plugin-vue": "^8.0.0",
71
71
  "eslint-plugin-vue-scoped-css": "^2.0.0",
72
- "eslint-plugin-yml": "^0.12.0",
72
+ "eslint-plugin-yml": "^0.13.0",
73
73
  "mocha": "^9.1.2",
74
74
  "nyc": "^15.1.0",
75
75
  "pack": "^2.2.0",
@@ -89,11 +89,11 @@
89
89
  },
90
90
  "dependencies": {
91
91
  "eslint-utils": "^3.0.0",
92
- "lodash": "^4.17.19",
93
- "postcss": "^8.2.4",
92
+ "lodash": "^4.17.21",
93
+ "postcss": "^8.4.6",
94
94
  "postcss-safe-parser": "^6.0.0",
95
- "postcss-scss": "^4.0.0",
96
- "postcss-selector-parser": "^6.0.2",
95
+ "postcss-scss": "^4.0.3",
96
+ "postcss-selector-parser": "^6.0.9",
97
97
  "postcss-styl": "^0.9.0"
98
98
  },
99
99
  "peerDependencies": {