Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
fix: updated toolkit to use .module.scss pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
Dale Baldwin committed Nov 1, 2023
1 parent d793910 commit e1f8a63
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"scripts": {
"build": "tsc --build && yarn copy-files",
"clean": "tsc --build --clean",
"copy-files": "copyfiles -u 1 src/**/*.scss dist/",
"copy-files": "copyfiles -u 1 src/**/*.module.scss dist/",
"lint": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint-ci": "yarn lint:prettier --check && yarn lint:eslint --max-warnings=0",
"lint:eslint": "eslint . --ext .ts,.tsx",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import React from "react"
import editIcon from "@kaizen/component-library/icons/edit.icon.svg"
import externalLinkIcon from "@kaizen/component-library/icons/external-link.icon.svg"
import removeLinkIcon from "@kaizen/component-library/icons/remove-link.icon.svg"
import styles from "./LinkPopover.scss"
import styles from "./LinkPopover.module.scss"

export interface LinkPopoverProps {
href?: string
Expand Down
2 changes: 1 addition & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module "*.scss" {
declare module "*.module.scss" {
const classes: { [key: string]: string }
export default classes
}
Expand Down

0 comments on commit e1f8a63

Please sign in to comment.