Skip to content

Commit 62121f8

Browse files
fischeversenkerdgp1130
authored andcommittedOct 25, 2022
feat(@schematics/angular): add sideEffects:false to library package.json
1 parent ca7ca1b commit 62121f8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed
 

‎packages/schematics/angular/library/files/package.json.template

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
},
88
"dependencies": {
99
"tslib": "^<%= tsLibLatestVersion %>"
10-
}
11-
}
10+
},
11+
"sideEffects": false
12+
}

‎packages/schematics/angular/library/index_spec.ts

+8
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ describe('Library Schematic', () => {
126126
expect(fileContent.peerDependencies['@angular/core']).toBe(`^${angularVersion}`);
127127
});
128128

129+
it('should add sideEffects: false flag to package.json named "foo"', async () => {
130+
const tree = await schematicRunner
131+
.runSchematicAsync('library', defaultOptions, workspaceTree)
132+
.toPromise();
133+
const fileContent = getFileContent(tree, '/projects/foo/package.json');
134+
expect(fileContent).toMatch(/"sideEffects": false/);
135+
});
136+
129137
it('should create a README.md named "foo"', async () => {
130138
const tree = await schematicRunner
131139
.runSchematicAsync('library', defaultOptions, workspaceTree)

0 commit comments

Comments
 (0)
Please sign in to comment.