Skip to content

Commit 0453ec6

Browse files
renamed lib to src for core-tracing (#7508)
1 parent 2e45647 commit 0453ec6

21 files changed

+8
-38
lines changed

sdk/core/core-tracing/ThirdPartyNotices.txt

Lines changed: 0 additions & 27 deletions
This file was deleted.

sdk/core/core-tracing/api-extractor.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3-
"mainEntryPointFilePath": "types/lib/index.d.ts",
3+
"mainEntryPointFilePath": "types/src/index.d.ts",
44
"docModel": {
55
"enabled": false
66
},

sdk/core/core-tracing/package.json

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"description": "Provides low-level interfaces and helper methods for tracing in Azure SDK",
55
"sdk-type": "client",
66
"main": "dist/index.js",
7-
"module": "dist-esm/lib/index.js",
7+
"module": "dist-esm/src/index.js",
88
"browser": {
9-
"./dist-esm/lib/utils/global.js": "./dist-esm/lib/utils/global.browser.js"
9+
"./dist-esm/src/utils/global.js": "./dist-esm/src/utils/global.browser.js"
1010
},
1111
"types": "types/core-tracing.d.ts",
1212
"scripts": {
@@ -25,7 +25,7 @@
2525
"integration-test:node": "echo skipped",
2626
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
2727
"lint:fix": "eslint package.json tsconfig.json \"src/**/*.ts\" \"test/**/*.ts\" --fix --fix-type [problem,suggestion]",
28-
"lint": "eslint package.json tsconfig.json lib --ext .ts -f html -o template-lintReport.html || exit 0",
28+
"lint": "eslint package.json tsconfig.json src --ext .ts -f html -o template-lintReport.html || exit 0",
2929
"pack": "npm pack 2>&1",
3030
"prebuild": "npm run clean",
3131
"test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
@@ -37,11 +37,8 @@
3737
},
3838
"files": [
3939
"dist/",
40-
"dist-esm/lib/",
41-
"src/",
42-
"lib/",
43-
"types/core-tracing.d.ts",
44-
"ThirdPartyNotices.txt"
40+
"dist-esm/src/",
41+
"types/core-tracing.d.ts"
4542
],
4643
"repository": "github:Azure/azure-sdk-for-js",
4744
"keywords": [

sdk/core/core-tracing/rollup.base.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import viz from "rollup-plugin-visualizer";
88

99
const pkg = require("./package.json");
1010
const depNames = Object.keys(pkg.dependencies);
11-
const input = "dist-esm/lib/index.js";
11+
const input = "dist-esm/src/index.js";
1212
const production = process.env.NODE_ENV === "production";
1313

1414
export function nodeConfig(test = false) {

sdk/core/core-tracing/lib/tracers/noop/noOpBinaryFormat.ts renamed to sdk/core/core-tracing/src/tracers/noop/noOpBinaryFormat.ts

File renamed without changes.

sdk/core/core-tracing/lib/tracers/noop/noOpHttpTextFormat.ts renamed to sdk/core/core-tracing/src/tracers/noop/noOpHttpTextFormat.ts

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)