Skip to content

Commit

Permalink
chore: make exported subpaths private packages
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolethoen authored Jul 27, 2023
1 parent 63564c6 commit a02434d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/exportSubpaths.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ async function createPackage(directoryName) {
main: `../dist/js/${directoryName}/index.js`,
module: `../dist/esm/${directoryName}/index.js`,
typings: `../dist/esm/${directoryName}/index.d.ts`,
version: packageJson.version
version: packageJson.version,
private: true
};

const dirPath = path.join(root, directoryName);
Expand Down

0 comments on commit a02434d

Please sign in to comment.