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

[Recorder] Fix types in the published package #17409

Merged
Merged
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
10 changes: 9 additions & 1 deletion sdk/test-utils/recorder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Release History

## 1.0.0 (Unreleased)
## 1.0.1 (2021-09-01)

Fix types in the published package.

## 1.0.0 (2021-08-30)

Marks the first release of the @azure-tools/test-recorder package.
This is not for the public consumption, releasing for the convenience of certain public pipelines.
Read more at [#17127](https://github.com/Azure/azure-sdk-for-js/pull/17127).

## 2021-07-13

Expand Down
4 changes: 2 additions & 2 deletions sdk/test-utils/recorder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure-tools/test-recorder",
"version": "1.0.0",
"version": "1.0.1",
"sdk-type": "client",
"description": "This library provides interfaces and helper methods to provide recording and playback capabilities for the tests in Azure JS/TS SDKs",
"main": "dist/index.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
"files": [
"dist/",
"dist-esm/src/",
"typings/src",
"types/src",
"README.md",
"LICENSE"
],
Expand Down
2 changes: 1 addition & 1 deletion sdk/test-utils/recorder/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"outDir": "./dist-esm",
"lib": ["dom", "es5", "es6", "es7", "esnext"]
},
"exclude": ["node_modules", "./typings/**/*.d.ts", "./samples/**/*.ts"],
"exclude": ["node_modules", "./types/**/*.d.ts", "./samples/**/*.ts"],
"include": ["./src/**/*.ts", "./test/**/*.ts"]
}