forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We've been migrating packages over to the single shared rollup config that dev-tool defines. This PR just migrates over two more packages that are easy to move over: - @azure/web-pubsub - @azure-tools/testing-recorder-new Resolves Azure#17811 Resolves Azure#17809
- Loading branch information
Showing
13 changed files
with
16 additions
and
293 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
118 changes: 0 additions & 118 deletions
118
sdk/test-utils/testing-recorder-new/rollup.base.config.js
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,17 +1,3 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
import { makeConfig } from "@azure/dev-tool/shared-config/rollup"; | ||
|
||
import * as base from "./rollup.base.config"; | ||
|
||
const inputs = []; | ||
|
||
if (!process.env.ONLY_BROWSER) { | ||
inputs.push(base.nodeConfig()); | ||
} | ||
|
||
// Disable this until we are ready to run rollup for the browser. | ||
if (!process.env.ONLY_NODE) { | ||
inputs.push(base.browserConfig()); | ||
} | ||
|
||
export default inputs; | ||
export default makeConfig(require("./package.json")); |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import * as base from "./rollup.base.config"; | ||
import { makeConfig } from "@azure/dev-tool/shared-config/rollup"; | ||
|
||
export default [base.nodeConfig()]; | ||
export default makeConfig(require("./package.json")); |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import * as base from "./rollup.base.config"; | ||
import { makeConfig } from "@azure/dev-tool/shared-config/rollup"; | ||
|
||
export default [base.nodeConfig()]; | ||
export default makeConfig(require("./package.json")); |
Oops, something went wrong.