Skip to content

Commit

Permalink
Fix path for fomantic-ui-css (#27)
Browse files Browse the repository at this point in the history
gdembowski authored Aug 17, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent e6d0055 commit 978bfc5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/css-patch/src/index.js
Original file line number Diff line number Diff line change
@@ -71,17 +71,17 @@ const run = async () => {
console.log(logSymbols.info, `Detected "${cssPackage}" package...`);

const filesToPatchPath = [
path.resolve(nodeModulesPath, "semantic-ui-css", "semantic.css"),
path.resolve(nodeModulesPath, "semantic-ui-css", "semantic.min.css"),
path.resolve(nodeModulesPath, cssPackage, "semantic.css"),
path.resolve(nodeModulesPath, cssPackage, "semantic.min.css"),
path.resolve(
nodeModulesPath,
"semantic-ui-css",
cssPackage,
"components",
"step.css"
),
path.resolve(
nodeModulesPath,
"semantic-ui-css",
cssPackage,
"components",
"step.min.css"
)

0 comments on commit 978bfc5

Please sign in to comment.