Skip to content

Commit fc8efb3

Browse files
authoredSep 1, 2022
feat(loader): add private field to loader's package.json (#3566)
this commit adds `private: true` to the `package.json`file that is generated for the `loader/` directory upon building a stencil project.
1 parent d822741 commit fc8efb3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/compiler/output-targets/output-lazy-loader.ts

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const generateLoader = async (
3232
const packageJsonContent = JSON.stringify(
3333
{
3434
name: config.fsNamespace + '-loader',
35+
private: true,
3536
typings: './index.d.ts',
3637
module: './index.js',
3738
main: './index.cjs.js',

0 commit comments

Comments
 (0)
Please sign in to comment.