-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Subtasks for 476027 Investigate .npmignore discrepancies between pack…
…ages (#1034) * Deleted .npmignore files and added files array to package.json * Renamed testData folder to test-data. * Fixed paths in files entries of package.json. Added folder to be exlcuded in angular-schematics package
- Loading branch information
1 parent
24c8523
commit a419a5c
Showing
4 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ src/*/*.ts | |
|
||
*.tgz | ||
.nycrc | ||
.nyc_output | ||
coverage | ||
|
||
# IDEs | ||
.idea/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ | |
"files": [ | ||
"dist", | ||
"types", | ||
"./*.js", | ||
"./*.d.ts" | ||
"/*.js", | ||
"/*.d.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,6 @@ | |
"files": [ | ||
"dist", | ||
"types", | ||
"global.d.ts" | ||
"/global.d.ts" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,7 @@ | |
"files": [ | ||
"dist", | ||
"types", | ||
"./*.js", | ||
"./*.d.ts" | ||
"/*.js", | ||
"/*.d.ts" | ||
] | ||
} |