Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(build): publish types as part of @ember/test-helpers #1196

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@
# tyescript related output files
addon-test-support/**/*.js
addon-test-support/**/*.d.ts
addon-test-support/**/*.d.ts.map
10 changes: 4 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
# other

/tsconfig.json
/API.md
/CHANGELOG.md
/RELEASE.md
/*.tgz
Expand All @@ -47,9 +46,8 @@
/server/

# typescript
#
# avoid publishing .d.ts or .ts files
# until they have become enforced "public" APIs

# avoid publishing source `.ts` files
*.ts
# to enable d.ts consumption remove the next line
# !*.d.ts
# only publish type defintions
!/addon-test-support/**/*.d.ts
Loading