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

Update rollup-plugin-node-resolve to 5.0.2 #3908

Closed
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
193 changes: 129 additions & 64 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/core/abort-controller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"rollup": "~1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.0",
Expand Down
6 changes: 3 additions & 3 deletions sdk/core/core-amqp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"url": "http://github.com/Azure/azure-sdk-for-js/issues"
},
"dependencies": {
"@azure/core-http": "^1.2.6",
"@azure/ms-rest-nodeauth": "^0.9.2",
"@types/async-lock": "^1.1.0",
"@types/is-buffer": "^2.0.0",
Expand All @@ -64,8 +65,7 @@
"stream-browserify": "^2.0.2",
"tslib": "^1.9.3",
"url": "^0.11.0",
"util": "^0.11.1",
"@azure/core-http": "^1.2.6"
"util": "^0.11.1"
},
"peerDependencies": {
"rhea-promise": "^0.1.15"
Expand Down Expand Up @@ -111,7 +111,7 @@
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-resolve": "0.0.1-predev.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-visualizer": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
"rollup-plugin-inject": "^2.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-processor-host/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.0",
Expand Down
6 changes: 4 additions & 2 deletions sdk/identity/identity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1",
"build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1",
"build:samples": "cd samples && tsc -p .",
"build:test": "tsc -p . && rollup -c rollup.test.config.js 2>&1",
"build:test:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c rollup.test.config.js 2>&1",
"build:test:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c rollup.test.config.js 2>&1",
"build:test": "npm run build:test:node",
"build": "npm run build:node",
"check-format": "prettier --list-different --config ../../.prettierrc.json \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
"clean": "rimraf dist dist-esm test-dist typings *.tgz *.log",
Expand Down Expand Up @@ -92,7 +94,7 @@
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.0",
Expand Down
12 changes: 11 additions & 1 deletion sdk/identity/identity/rollup.test.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
import * as base from "./rollup.base.config";

export default [base.nodeConfig(true), base.browserConfig(true)];
const inputs = [];

if (!process.env.ONLY_BROWSER) {
inputs.push(base.nodeConfig(true));
}

if (!process.env.ONLY_NODE) {
inputs.push(base.browserConfig(true));
}

export default inputs;
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-certificates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"rimraf": "^2.6.2",
"rollup": "~1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"typescript": "^3.2.2",
"uglify-js": "^3.4.9",
"url": "^0.11.0"
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-keys/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"rimraf": "^2.6.2",
"rollup": "~1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"ts-mocha": "^6.0.0",
"typescript": "^3.2.2",
"uglify-js": "^3.4.9",
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-secrets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"rimraf": "^2.6.2",
"rollup": "~1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"ts-mocha": "^6.0.0",
"typescript": "^3.2.2",
"uglify-js": "^3.4.9",
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/service-bus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
"rollup-plugin-inject": "^2.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
Expand Down
18 changes: 9 additions & 9 deletions sdk/storage/storage-blob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "~7.0.0",
"@types/mocha": "^5.2.5",
"@types/nise": "^1.4.0",
"@types/nock": "^10.0.1",
"@types/node": "^8.0.0",
"@typescript-eslint/eslint-plugin": "~1.9.0",
"@typescript-eslint/parser": "^1.7.0",
Expand All @@ -107,21 +109,26 @@
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-json-preprocessor": "^0.3.3",
"karma-json-to-file-reporter": "^1.0.1",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-remap-coverage": "^0.1.5",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.0.1",
"nise": "^1.4.10",
"nock": "^10.0.6",
"nyc": "^14.0.0",
"prettier": "^1.16.4",
"puppeteer": "^1.11.0",
"query-string": "^6.5.0",
"rimraf": "^2.6.2",
"rollup": "~1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
Expand All @@ -130,13 +137,6 @@
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"util": "^0.11.1",
"@types/nise": "^1.4.0",
"@types/nock": "^10.0.1",
"karma-json-preprocessor": "^0.3.3",
"karma-json-to-file-reporter": "^1.0.1",
"nise": "^1.4.10",
"nock": "^10.0.6",
"query-string": "^6.5.0"
"util": "^0.11.1"
}
}
44 changes: 22 additions & 22 deletions sdk/storage/storage-datalake/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
"author": "Microsoft Corporation",
"description": "DataLakeStorageClient Library with typescript type definitions for node.js and browser.",
"version": "0.1.1",
"dependencies": {
"@azure/ms-rest-azure-js": "^1.3.2",
"@azure/ms-rest-js": "^1.2.6",
"tslib": "^1.9.3",
"uglify": "^0.1.5"
},
"keywords": [
"node",
"azure",
Expand All @@ -20,21 +14,6 @@
"main": "./dist/storage-datalake.js",
"module": "./esm/dataLakeStorageClient.js",
"types": "./esm/dataLakeStorageClient.d.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~1.9.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-detailed-reporter": "^0.8.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"eslint-plugin-promise": "^4.1.1",
"typescript": "^3.2.2",
"rollup": "~1.13.1",
"rollup-plugin-node-resolve": "^4.2.0",
"uglify-js": "^3.4.9",
"ts-node": "^7.0.1"
},
"homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/sdk/storage/storage-datalake",
"repository": {
"type": "git",
Expand Down Expand Up @@ -75,5 +54,26 @@
"unit-test": "echo skipped"
},
"sideEffects": false,
"authPublish": true
"authPublish": true,
"dependencies": {
"@azure/ms-rest-azure-js": "^1.3.2",
"@azure/ms-rest-js": "^1.2.6",
"tslib": "^1.9.3",
"uglify": "^0.1.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~1.9.0",
"@typescript-eslint/parser": "^1.7.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-detailed-reporter": "^0.8.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"eslint-plugin-promise": "^4.1.1",
"rollup": "~1.13.1",
"rollup-plugin-node-resolve": "^5.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"uglify-js": "^3.4.9"
}
}
6 changes: 3 additions & 3 deletions sdk/storage/storage-file/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@
"devDependencies": {
"@microsoft/api-extractor": "^7.1.5",
"@types/dotenv": "^6.1.0",
"@typescript-eslint/eslint-plugin": "~1.9.0",
"@typescript-eslint/parser": "^1.7.0",
"@types/fs-extra": "~7.0.0",
"@types/mocha": "^5.2.5",
"@types/nise": "^1.4.0",
"@types/nock": "^10.0.1",
"@types/node": "^8.0.0",
"@typescript-eslint/eslint-plugin": "~1.9.0",
"@typescript-eslint/parser": "^1.7.0",
"assert": "^1.4.1",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
Expand Down Expand Up @@ -128,7 +128,7 @@
"rollup": "~1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/storage-queue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"rollup": "~1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
Expand Down
2 changes: 1 addition & 1 deletion sdk/template/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.0",
Expand Down