File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed
Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 3131 "clean" : " tsc --build --clean tsconfig.json tsconfig.esm.json tsconfig.esnext.json" ,
3232 "precompile" : " cross-var lerna run version --scope $npm_package_name --include-dependencies" ,
3333 "compile" : " tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json" ,
34- "docs" : " typedoc" ,
35- "docs:deploy" : " gh-pages --dist docs/out" ,
36- "docs:test" : " linkinator docs/out --silent && linkinator docs/*.md *.md --markdown --silent" ,
3734 "lint:fix" : " eslint . --ext .ts --fix" ,
3835 "lint" : " eslint . --ext .ts" ,
3936 "test:browser" : " karma start --single-run" ,
Original file line number Diff line number Diff line change 1313 * See the License for the specific language governing permissions and
1414 * limitations under the License.
1515 */
16+
17+ /**
18+ * Any exports here may change at any time and without warning
19+ * @module @opentelemetry /api/experimental
20+ */
21+
1622export { wrapTracer , SugaredTracer } from './trace/SugaredTracer' ;
1723export { SugaredSpanOptions } from './trace/SugaredOptions' ;
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17+ /**
18+ * @module @opentelemetry /api
19+ */
20+
1721export { BaggageEntry , BaggageEntryMetadata , Baggage } from './baggage/types' ;
1822export { baggageEntryMetadataFromString } from './baggage/utils' ;
1923export { Exception } from './common/Exception' ;
Original file line number Diff line number Diff line change 1+ {
2+ "entryPoints" : [
3+ " src/index.ts" ,
4+ " src/experimental/index.ts"
5+ ]
6+ }
You can’t perform that action at this time.
0 commit comments