Skip to content

Commit

Permalink
Upgrade dev dependencies
Browse files Browse the repository at this point in the history
- These have breaking changes, but nothing that affects the published build.
- fix CSS imports to meet new stylelint standard
- fix jest config to move `collectCoverageFrom` to top level
  • Loading branch information
brianchirls committed Nov 22, 2022
1 parent 843c3ab commit cc3ef10
Show file tree
Hide file tree
Showing 5 changed files with 1,396 additions and 2,076 deletions.
2 changes: 1 addition & 1 deletion examples/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '~purecss/build/base.css';
@import url('~purecss/build/base.css');

:root {
--border-style: 1px solid #e8e8e8;
Expand Down
2 changes: 1 addition & 1 deletion examples/util/example.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import '~purecss/build/base.css';
@import url('~purecss/build/base.css');

body {
position: absolute;
Expand Down
12 changes: 6 additions & 6 deletions jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
"text",
"text-summary"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!src/index.{js,ts}",
"!src/browser.{js,ts}",
"!**/tests/**"
],
"projects": [
{
"displayName": "test",
"clearMocks": true,
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!src/index.{js,ts}",
"!src/browser.{js,ts}",
"!**/tests/**"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,ts}",
"<rootDir>/src/**/*.{spec,test}.{js,ts}"
Expand Down
Loading

0 comments on commit cc3ef10

Please sign in to comment.