Skip to content

Commit

Permalink
fix(module): remove undefined modules exports from the library entry …
Browse files Browse the repository at this point in the history
…point
  • Loading branch information
hamikhambardzumyan committed Dec 26, 2023
1 parent e1e4fe2 commit c2d32c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const isDirectory = (source) => lstatSync(source).isDirectory();
const isFile = (source) => lstatSync(source).isFile();

const copyStaticFilesToDist = async () => {
const filesToCopy = ['package.json', 'README.md', 'CHANGELOG.md', 'LICENSE']; // need to add also LICENSE
const filesToCopy = ['package.json', 'README.md', 'CHANGELOG.md', 'LICENSE'];
const copyPromises = filesToCopy.map(async (fileName) => {
const sourcePath = join(__dirname, '..', fileName);
const destinationPath = join(__dirname, '..', 'dist', fileName);
Expand Down
3 changes: 0 additions & 3 deletions src/index.mobile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ export * from './lib/molecules/Notification/index.mobile';
export * from './lib/molecules/Pagination/index.mobile';
export * from './lib/molecules/RadioGroup/index.mobile';
export * from './lib/molecules/ValidatableElements/Elements/index.mobile';
export * from './lib/molecules/MobileNavigation/index.mobile';
export * from './lib/molecules/Products/index.mobile';
export * from './lib/molecules/Counter/index.mobile';

// Organisms
export * from './lib/organisms/CheckboxGroup/index.mobile';
export * from './lib/organisms/Form/index.mobile';

0 comments on commit c2d32c2

Please sign in to comment.