Skip to content

Commit 7b43cd5

Browse files
authored
fix(styles): Fix "sideEffects" property in package.json causing issues when importing styles (#186)
- Explicitely mark styles (scss, css) as files with side-effects, preventing Webpack from tree shaking them out Closes #183
1 parent 19e7e95 commit 7b43cd5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"name": "angular-notifier"
2+
"name": "angular-notifier",
3+
"sideEffects": [
4+
"*.scss",
5+
"*.css"
6+
]
37
}

0 commit comments

Comments
 (0)