Skip to content

Commit

Permalink
Remove filter-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmckeb committed Feb 18, 2023
1 parent 6f34a3c commit b2efb8f
Show file tree
Hide file tree
Showing 13 changed files with 116 additions and 107 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"less": "^4.1.3",
"lodash.camelcase": "^4.3.0",
"postcss": "^8.4.21",
"postcss-filter-plugins": "^3.0.1",
"postcss-load-config": "^3.1.4",
"postcss-modules-local-by-default": "^4.0.0",
"postcss-modules-scope": "^3.0.0",
Expand Down
24 changes: 7 additions & 17 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions src/@types/postcss-filter-plugins.ts

This file was deleted.

12 changes: 6 additions & 6 deletions src/helpers/__tests__/__snapshots__/classTransforms.test.ts.snap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`utils / classTransforms should not transform classes when no option is set 1`] = `
exports[`helpers / classTransforms should not transform classes when no option is set 1`] = `
[
[
"class-name-a",
Expand All @@ -17,7 +17,7 @@ exports[`utils / classTransforms should not transform classes when no option is
]
`;

exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`asIs\` 1`] = `
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`asIs\` 1`] = `
[
[
"class-name-a",
Expand All @@ -34,7 +34,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
]
`;

exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCase\` 1`] = `
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCase\` 1`] = `
[
[
"class-name-a",
Expand All @@ -54,7 +54,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
]
`;

exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCaseOnly\` 1`] = `
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`camelCaseOnly\` 1`] = `
[
[
"classNameA",
Expand All @@ -71,7 +71,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
]
`;

exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashes\` 1`] = `
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashes\` 1`] = `
[
[
"class-name-a",
Expand All @@ -90,7 +90,7 @@ exports[`utils / classTransforms should transform classes correctly when \`class
]
`;

exports[`utils / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashesOnly\` 1`] = `
exports[`helpers / classTransforms should transform classes correctly when \`classnameTransform\` set to \`dashesOnly\` 1`] = `
[
[
"classNameA",
Expand Down
Loading

0 comments on commit b2efb8f

Please sign in to comment.