Skip to content

Commit

Permalink
Fix matching
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Jul 16, 2015
1 parent 42dac89 commit 440b567
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion icon-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Material Design Svg Icons converted to React components.",
"scripts": {
"prebuild": "rm -rf js",
"createMuiIconsJsx": "node build.js --output-dir jsx --svg-dir ./node_modules/material-design-icons --glob '/**/*_24px.svg' --mui-require relative --renameFilter ./filters/rename/material-design-icons.js",
"createMuiIconsJsx": "node build.js --output-dir jsx --svg-dir ./node_modules/material-design-icons --glob '/**/production/*_24px.svg' --mui-require relative --renameFilter ./filters/rename/material-design-icons.js",
"build": "npm run createMuiIconsJsx && babel --stage 1 ./jsx --out-dir ./js",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down
6 changes: 3 additions & 3 deletions icon-builder/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe('--output-dir', function() {
var options = {
svgDir: MUI_ICONS_SVG_DIR,
innerPath: "/svg/production/",
glob: '/**/*_24px.svg',
glob: '/**/production/*_24px.svg',
renameFilter: builder.RENAME_FILTER_MUI,
disable_log: DISABLE_LOG
}, tempPath;
Expand Down Expand Up @@ -140,7 +140,7 @@ describe('--mui-require', function() {
var options = {
svgDir: MUI_ICONS_SVG_DIR,
innerPath: "/svg/production/",
glob: '/**/*_24px.svg',
glob: '/**/production/*_24px.svg',
disable_log: DISABLE_LOG,
renameFilter: builder.RENAME_FILTER_MUI,
}, tempPath, jsxExampleOutputPath;
Expand Down Expand Up @@ -200,7 +200,7 @@ describe('Template rendering', function() {
var options = {
svgDir: MUI_ICONS_SVG_DIR,
innerPath: "/svg/production/",
glob: '/**/*_24px.svg',
glob: '/**/production/*_24px.svg',
renameFilter: builder.RENAME_FILTER_MUI,
muiRequire: 'relative',
disable_log: DISABLE_LOG
Expand Down

0 comments on commit 440b567

Please sign in to comment.