Skip to content

Commit

Permalink
feat(loader): add private field to loader's package.json (#3566)
Browse files Browse the repository at this point in the history
this commit adds `private: true` to the `package.json`file
that is generated for the `loader/` directory upon building
a stencil project.
  • Loading branch information
supersabillon committed Sep 1, 2022
1 parent d822741 commit fc8efb3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/compiler/output-targets/output-lazy-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const generateLoader = async (
const packageJsonContent = JSON.stringify(
{
name: config.fsNamespace + '-loader',
private: true,
typings: './index.d.ts',
module: './index.js',
main: './index.cjs.js',
Expand Down

0 comments on commit fc8efb3

Please sign in to comment.