Skip to content

Commit b2efb8f

Browse files
committed
Remove filter-plugins
1 parent 6f34a3c commit b2efb8f

13 files changed

+116
-107
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
"less": "^4.1.3",
5454
"lodash.camelcase": "^4.3.0",
5555
"postcss": "^8.4.21",
56-
"postcss-filter-plugins": "^3.0.1",
5756
"postcss-load-config": "^3.1.4",
5857
"postcss-modules-local-by-default": "^4.0.0",
5958
"postcss-modules-scope": "^3.0.0",

pnpm-lock.yaml

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

src/@types/postcss-filter-plugins.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/helpers/__tests__/__snapshots__/classTransforms.test.ts.snap

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`utils / classTransforms should not transform classes when no option is set 1`] = `
3+
exports[`helpers / classTransforms should not transform classes when no option is set 1`] = `
44
[
55
[
66
"class-name-a",
@@ -17,7 +17,7 @@ exports[`utils / classTransforms should not transform classes when no option is
1717
]
1818
`;
1919

20-
exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`asIs\` 1`] = `
20+
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`asIs\` 1`] = `
2121
[
2222
[
2323
"class-name-a",
@@ -34,7 +34,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
3434
]
3535
`;
3636

37-
exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCase\` 1`] = `
37+
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCase\` 1`] = `
3838
[
3939
[
4040
"class-name-a",
@@ -54,7 +54,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
5454
]
5555
`;
5656

57-
exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCaseOnly\` 1`] = `
57+
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCaseOnly\` 1`] = `
5858
[
5959
[
6060
"classNameA",
@@ -71,7 +71,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
7171
]
7272
`;
7373

74-
exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashes\` 1`] = `
74+
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashes\` 1`] = `
7575
[
7676
[
7777
"class-name-a",
@@ -90,7 +90,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
9090
]
9191
`;
9292

93-
exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashesOnly\` 1`] = `
93+
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashesOnly\` 1`] = `
9494
[
9595
[
9696
"classNameA",

0 commit comments

Comments
 (0)