Skip to content

Commit

Permalink
fix(icon-helpers): restore icon-helpers exports
Browse files Browse the repository at this point in the history
  • Loading branch information
lewandom committed Sep 26, 2023
1 parent 33f53ad commit af7457f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/icon-helpers/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@
*/

import getAttributes, { defaultAttributes } from './getAttributes';
import toString, { formatAttributes } from './toString';
import toSVG from './toSVG';

export { defaultAttributes, getAttributes };
export { defaultAttributes, getAttributes, formatAttributes, toString, toSVG };
4 changes: 2 additions & 2 deletions packages/icon-helpers/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */

/* JavaScript Support */
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */

/* Emit */
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
"emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
// "outDir": "./", /* Specify an output folder for all emitted files. */
Expand Down

0 comments on commit af7457f

Please sign in to comment.