From 0150c55e372262ba4b2c60783ad00a76b3726ed1 Mon Sep 17 00:00:00 2001 From: Jason Miller Date: Thu, 22 Apr 2021 09:23:22 -0400 Subject: [PATCH] chore(repo): Add "directory" to package.json repository fields. (#826) --- packages/alias/package.json | 5 ++++- packages/auto-install/package.json | 5 ++++- packages/babel/package.json | 5 ++++- packages/beep/package.json | 5 ++++- packages/buble/package.json | 5 ++++- packages/commonjs/package.json | 5 ++++- packages/data-uri/package.json | 5 ++++- packages/dsv/package.json | 5 ++++- packages/dynamic-import-vars/package.json | 5 ++++- packages/eslint/package.json | 5 ++++- packages/graphql/package.json | 5 ++++- packages/html/package.json | 5 ++++- packages/image/package.json | 5 ++++- packages/inject/package.json | 5 ++++- packages/json/package.json | 5 ++++- packages/legacy/package.json | 5 ++++- packages/multi-entry/package.json | 5 ++++- packages/node-resolve/package.json | 5 ++++- packages/pluginutils/package.json | 5 ++++- packages/replace/package.json | 5 ++++- packages/run/package.json | 5 ++++- packages/strip/package.json | 5 ++++- packages/sucrase/package.json | 5 ++++- packages/typescript/package.json | 5 ++++- packages/url/package.json | 5 ++++- packages/virtual/package.json | 5 ++++- packages/wasm/package.json | 5 ++++- packages/yaml/package.json | 5 ++++- 28 files changed, 112 insertions(+), 28 deletions(-) diff --git a/packages/alias/package.json b/packages/alias/package.json index c8015349c..d1911bbe2 100755 --- a/packages/alias/package.json +++ b/packages/alias/package.json @@ -6,7 +6,10 @@ }, "description": "Define and resolve aliases for bundle dependencies", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/alias" + }, "author": "Johannes Stein", "homepage": "https://github.com/rollup/plugins/tree/master/packages/alias#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/auto-install/package.json b/packages/auto-install/package.json index 4b50aba96..ef063bcbe 100755 --- a/packages/auto-install/package.json +++ b/packages/auto-install/package.json @@ -6,7 +6,10 @@ }, "description": "Automatically install dependencies that are imported by a bundle", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/auto-install" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/auto-install/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/babel/package.json b/packages/babel/package.json index 6401fbad2..80088d8ed 100644 --- a/packages/babel/package.json +++ b/packages/babel/package.json @@ -6,7 +6,10 @@ }, "description": "Seamless integration between Rollup and Babel.", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/babel" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/babel#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/beep/package.json b/packages/beep/package.json index 4567045a7..2e76cca79 100644 --- a/packages/beep/package.json +++ b/packages/beep/package.json @@ -6,7 +6,10 @@ }, "description": "A Rollup plugin which beeps on errors and warnings", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/beep" + }, "author": "shellscape", "homepage": "https://github.com/rollup/plugins/tree/master/packages/beep", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/buble/package.json b/packages/buble/package.json index f0913f9fa..e5b3781ca 100644 --- a/packages/buble/package.json +++ b/packages/buble/package.json @@ -6,7 +6,10 @@ }, "description": "Compile ES2015 with buble", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/buble" + }, "author": "Rich Harris ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/buble/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/commonjs/package.json b/packages/commonjs/package.json index 44fe13a46..134f3bb4e 100644 --- a/packages/commonjs/package.json +++ b/packages/commonjs/package.json @@ -6,7 +6,10 @@ }, "description": "Convert CommonJS modules to ES2015", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/commonjs" + }, "author": "Rich Harris ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/commonjs/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/data-uri/package.json b/packages/data-uri/package.json index fbd44fb72..7f9502e21 100644 --- a/packages/data-uri/package.json +++ b/packages/data-uri/package.json @@ -6,7 +6,10 @@ }, "description": "Import modules from Data URIs", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/data-uri" + }, "author": "shellscape", "homepage": "https://github.com/rollup/plugins/tree/master/packages/data-uri", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/dsv/package.json b/packages/dsv/package.json index 978627eeb..08101bc7a 100755 --- a/packages/dsv/package.json +++ b/packages/dsv/package.json @@ -6,7 +6,10 @@ }, "description": "Convert .csv and .tsv files into JavaScript modules with d3-dsv", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/dsv" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/dsv#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/dynamic-import-vars/package.json b/packages/dynamic-import-vars/package.json index e000d951c..a79e40184 100644 --- a/packages/dynamic-import-vars/package.json +++ b/packages/dynamic-import-vars/package.json @@ -6,7 +6,10 @@ }, "description": "Resolving dynamic imports that contain variables.", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/dynamic-import-vars" + }, "author": "LarsDenBakker", "homepage": "https://github.com/rollup/plugins/tree/master/packages/dynamic-import-vars", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/eslint/package.json b/packages/eslint/package.json index 272939e3a..c2fa523ea 100755 --- a/packages/eslint/package.json +++ b/packages/eslint/package.json @@ -6,7 +6,10 @@ }, "description": "Verify entry point and all imported files with ESLint", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/eslint" + }, "author": "Bogdan Chadkin ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/eslint#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/graphql/package.json b/packages/graphql/package.json index 163c87216..0a47cdc4a 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -6,7 +6,10 @@ }, "description": "Convert .gql/.graphql files to ES6 modules", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/graphql" + }, "author": "rollup", "homepage": "https://github.com/rollup/plugins/tree/master/packages/graphql#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/html/package.json b/packages/html/package.json index e2102f0e7..1ff7bc57f 100644 --- a/packages/html/package.json +++ b/packages/html/package.json @@ -6,7 +6,10 @@ }, "description": "Creates HTML files to serve Rollup bundles", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/html" + }, "author": "Andrew Powell ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/html#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/image/package.json b/packages/image/package.json index 80ae59a5c..221c26dfc 100644 --- a/packages/image/package.json +++ b/packages/image/package.json @@ -6,7 +6,10 @@ }, "description": "Import JPG, PNG, GIF, SVG, and WebP files", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/image" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/image/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/inject/package.json b/packages/inject/package.json index f951c9de1..417d05fc8 100644 --- a/packages/inject/package.json +++ b/packages/inject/package.json @@ -6,7 +6,10 @@ }, "description": "Scan modules for global variables and injects `import` statements where necessary", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/inject" + }, "author": "Rich Harris ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/inject#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/json/package.json b/packages/json/package.json index cc2032f2e..f4f65a75f 100755 --- a/packages/json/package.json +++ b/packages/json/package.json @@ -6,7 +6,10 @@ }, "description": "Convert .json files to ES6 modules", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/json" + }, "author": "rollup", "homepage": "https://github.com/rollup/plugins/tree/master/packages/json#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/legacy/package.json b/packages/legacy/package.json index d201f27db..692eeda9a 100644 --- a/packages/legacy/package.json +++ b/packages/legacy/package.json @@ -6,7 +6,10 @@ }, "description": "Add export statements to plain scripts", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/legacy" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/legacy/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/multi-entry/package.json b/packages/multi-entry/package.json index 3cb14441b..9682c9734 100755 --- a/packages/multi-entry/package.json +++ b/packages/multi-entry/package.json @@ -6,7 +6,10 @@ }, "description": "Use multiple entry points for a bundle", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/multi-entry" + }, "author": "rollup", "homepage": "https://github.com/rollup/plugins/tree/master/packages/multi-entry/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/node-resolve/package.json b/packages/node-resolve/package.json index d4c316e19..78cf2c239 100644 --- a/packages/node-resolve/package.json +++ b/packages/node-resolve/package.json @@ -6,7 +6,10 @@ }, "description": "Locate and bundle third-party dependencies in node_modules", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/node-resolve" + }, "author": "Rich Harris ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/node-resolve/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/pluginutils/package.json b/packages/pluginutils/package.json index 1d39a48c8..ecbadcb1c 100644 --- a/packages/pluginutils/package.json +++ b/packages/pluginutils/package.json @@ -6,7 +6,10 @@ }, "description": "A set of utility functions commonly used by Rollup plugins", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/pluginutils" + }, "author": "Rich Harris ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/pluginutils#readme", "bugs": { diff --git a/packages/replace/package.json b/packages/replace/package.json index ae1b15af4..5dc3e984b 100644 --- a/packages/replace/package.json +++ b/packages/replace/package.json @@ -6,7 +6,10 @@ }, "description": "Replace strings in files while bundling", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/replace" + }, "author": "Rich Harris ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/replace#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/run/package.json b/packages/run/package.json index d816a4b4b..6ed4d7005 100644 --- a/packages/run/package.json +++ b/packages/run/package.json @@ -6,7 +6,10 @@ }, "description": "Run your bundle after you've built it", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/run" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/run/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/strip/package.json b/packages/strip/package.json index 04c8860c3..a843d8f60 100644 --- a/packages/strip/package.json +++ b/packages/strip/package.json @@ -6,7 +6,10 @@ }, "description": "Remove debugger statements and functions like assert.equal and console.log from your code", "license": "MIT", - "repository": "rollup/@rollup/plugin-strip", + "repository": { + "url": "rollup/plugins", + "directory": "packages/strip" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/strip#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/sucrase/package.json b/packages/sucrase/package.json index 424299f03..21981df2d 100644 --- a/packages/sucrase/package.json +++ b/packages/sucrase/package.json @@ -6,7 +6,10 @@ }, "description": "Compile TypeScript, Flow, JSX, etc with Sucrase", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/sucrase" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/sucrase/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/typescript/package.json b/packages/typescript/package.json index ed03e77cb..d7ed49eae 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -6,7 +6,10 @@ }, "description": "Seamless integration between Rollup and TypeScript.", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/typescript" + }, "author": "Oskar Segersvärd", "homepage": "https://github.com/rollup/plugins/tree/master/packages/typescript/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/url/package.json b/packages/url/package.json index a82ea7808..3d26938dd 100644 --- a/packages/url/package.json +++ b/packages/url/package.json @@ -6,7 +6,10 @@ }, "description": "Import files as data-URIs or ES Modules", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/url" + }, "author": "Arpad Borsos ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/url/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/virtual/package.json b/packages/virtual/package.json index 5db3e9c1c..0a459c899 100755 --- a/packages/virtual/package.json +++ b/packages/virtual/package.json @@ -6,7 +6,10 @@ }, "description": "Load virtual modules from memory", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/virtual" + }, "author": "Rich Harris", "homepage": "https://github.com/rollup/plugins/tree/master/packages/virtual#readme", "bugs": "https://github.com/rollup/rollup-plugin-virtual/issues", diff --git a/packages/wasm/package.json b/packages/wasm/package.json index d964f4a93..2c4c19b64 100644 --- a/packages/wasm/package.json +++ b/packages/wasm/package.json @@ -6,7 +6,10 @@ }, "description": "Import WebAssembly code with Rollup", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/wasm" + }, "author": "Jamen Marz ", "homepage": "https://github.com/rollup/plugins/tree/master/packages/wasm/#readme", "bugs": "https://github.com/rollup/plugins/issues", diff --git a/packages/yaml/package.json b/packages/yaml/package.json index 2a8dc183e..42026d250 100755 --- a/packages/yaml/package.json +++ b/packages/yaml/package.json @@ -6,7 +6,10 @@ }, "description": "Convert YAML files to ES6 modules", "license": "MIT", - "repository": "rollup/plugins", + "repository": { + "url": "rollup/plugins", + "directory": "packages/yaml" + }, "author": "rollup", "homepage": "https://github.com/rollup/plugins/tree/master/packages/yaml/#readme", "bugs": "https://github.com/rollup/plugins/issues",