Skip to content

Commit

Permalink
Merge pull request #90 from indiana-university/release/1.0.1
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
levimcg authored Jan 21, 2022
2 parents cd719da + 80ee295 commit 5bdc08d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion lib/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ async function readIcons (options = {}) {
process
} = options
const selectedIcons = (typeof icons === 'string' ? [icons] : icons)
.map((n) => path.resolve(__dirname, '..', ICON_SRC_DIR, `${n}.svg`))
.map((n) =>
path
.resolve(__dirname, '..', ICON_SRC_DIR, `${n}.svg`)
.replace(/\\/g, '/')
)
const selectedIconFiles = await fg(selectedIcons)
const includedIconFiles = await fg(include)
const files = [...selectedIconFiles, ...includedIconFiles]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rivet-icons",
"version": "1.0.0",
"version": "1.0.1",
"description": "Icon set for Indiana University's Rivet design system",
"files": [
"dist/**/*",
Expand Down

0 comments on commit 5bdc08d

Please sign in to comment.