Add the repository.directory field to package.json files.

This commit is contained in:
Ian Clanton-Thuon 2021-10-26 11:41:42 -07:00
Родитель 9738cad6e1
Коммит 58da1a3a6f
36 изменённых файлов: 83 добавлений и 36 удалений

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Read JSON files from api-extractor, generate documentation pages",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/api-documenter"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/api-documenter"
},
"homepage": "https://api-extractor.com/",
"license": "MIT",

Просмотреть файл

@ -4,7 +4,8 @@
"description": "A helper library for loading and saving the .api.json files created by API Extractor",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/api-extractor-model"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/api-extractor-model"
},
"homepage": "https://api-extractor.com",
"main": "lib/index.js",

Просмотреть файл

@ -21,7 +21,8 @@
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/api-extractor"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/api-extractor"
},
"homepage": "https://api-extractor.com",
"main": "lib/index.js",

Просмотреть файл

@ -14,7 +14,8 @@
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/heft"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/heft"
},
"engines": {
"node": ">=10.13.0"

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Detect load time regressions by running an app, tracing require() calls, and generating a deterministic report",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/rundown"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/rundown"
},
"engines": {
"node": ">=10.0.0"

Просмотреть файл

@ -4,7 +4,8 @@
"description": "A library for writing scripts that interact with the Rush tool",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/rush-lib"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/rush-lib"
},
"engines": {
"node": ">=5.6.0"

Просмотреть файл

@ -15,7 +15,8 @@
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/apps/rush"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/rush"
},
"engines": {
"node": ">=5.6.0"

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Heft plugin for Jest",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/heft-plugins/heft-jest-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "heft-plugins/heft-jest-plugin"
},
"homepage": "https://rushstack.io/pages/heft/overview/",
"main": "lib/index.js",

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Heft plugin for SASS",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/heft-plugins/heft-sass-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "heft-plugins/heft-sass-plugin"
},
"homepage": "https://rushstack.io/pages/heft/overview/",
"main": "lib/index.js",

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Heft plugin for supporting UI development using Storybook",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/heft-plugins/heft-storybook-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "heft-plugins/heft-storybook-plugin"
},
"homepage": "https://rushstack.io/pages/heft/overview/",
"main": "lib/index.js",

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Heft plugin for Webpack 4",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/heft-plugins/heft-webpack4-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "heft-plugins/heft-webpack4-plugin"
},
"homepage": "https://rushstack.io/pages/heft/overview/",
"main": "lib/index.js",

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Heft plugin for Webpack 5",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/heft-plugins/heft-webpack5-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "heft-plugins/heft-webpack5-plugin"
},
"homepage": "https://rushstack.io/pages/heft/overview/",
"main": "lib/index.js",

Просмотреть файл

@ -6,7 +6,9 @@
"typings": "dist/debug-certificate-manager.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/debug-certificate-manager"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/debug-certificate-manager"
},
"scripts": {
"build": "heft build --clean"

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Configuration file loader for @rushstack/heft",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/heft-config-file"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "libraries/heft-config-file"
},
"engines": {
"node": ">=10.13.0"

Просмотреть файл

@ -4,7 +4,9 @@
"description": "Loads themed styles.",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/load-themed-styles"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/load-themed-styles"
},
"scripts": {
"build": "heft build --clean"

Просмотреть файл

@ -6,7 +6,9 @@
"typings": "dist/node-core-library.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/node-core-library"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/node-core-library"
},
"scripts": {
"build": "heft test --clean"

Просмотреть файл

@ -7,7 +7,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/package-deps-hash"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "libraries/package-deps-hash"
},
"scripts": {
"build": "heft test --clean"

Просмотреть файл

@ -6,7 +6,9 @@
"typings": "dist/rig-package.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/rig-package"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/rig-package"
},
"scripts": {
"build": "heft test --clean"

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Execute shell commands using a consistent syntax on every platform",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/rushell"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "libraries/rushell"
},
"main": "lib/index.js",
"typings": "dist/rushell.d.ts",

Просмотреть файл

@ -4,7 +4,8 @@
"description": "Display intelligible realtime output from concurrent processes",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/stream-collator"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "libraries/stream-collator"
},
"main": "lib/index.js",
"typings": "dist/stream-collator.d.ts",

Просмотреть файл

@ -6,7 +6,9 @@
"typings": "dist/terminal.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/terminal"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/terminal"
},
"scripts": {
"build": "heft test --clean"

Просмотреть файл

@ -6,7 +6,9 @@
"typings": "dist/tree-pattern.d.ts",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/tree-pattern"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "libraries/tree-pattern"
},
"scripts": {
"build": "heft test --clean"

Просмотреть файл

@ -4,7 +4,8 @@
"description": "An object-oriented command-line parser for TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/ts-command-line"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "libraries/ts-command-line"
},
"main": "lib/index.js",
"typings": "dist/ts-command-line.d.ts",

Просмотреть файл

@ -12,7 +12,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/libraries/typings-generator"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "libraries/typings-generator"
},
"scripts": {
"build": "heft build --clean"

Просмотреть файл

@ -8,7 +8,8 @@
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/rigs/heft-node-rig"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "rigs/heft-node-rig"
},
"peerDependencies": {
"@rushstack/heft": "^0.41.7"

Просмотреть файл

@ -8,7 +8,8 @@
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/rigs/heft-web-rig"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "rigs/heft-web-rig"
},
"peerDependencies": {
"@rushstack/heft": "^0.41.7"

Просмотреть файл

@ -4,7 +4,9 @@
"description": "A TypeScript ESLint ruleset designed for large teams and projects",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/stack/eslint-config"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "stack/eslint-config"
},
"homepage": "https://rushstack.io",
"scripts": {

Просмотреть файл

@ -5,7 +5,9 @@
"main": "lib/usage.js",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/stack/eslint-patch"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "stack/eslint-patch"
},
"homepage": "https://rushstack.io",
"scripts": {

Просмотреть файл

@ -4,7 +4,9 @@
"description": "A lightweight alternative to NPM packages for organizing source files within a single project",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/stack/eslint-plugin-packlets"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "stack/eslint-plugin-packlets"
},
"homepage": "https://rushstack.io",
"keywords": [

Просмотреть файл

@ -4,7 +4,9 @@
"description": "An ESLint plugin providing rules that identify common security vulnerabilities for browser applications, Node.js tools, and Node.js services",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/stack/eslint-plugin-security"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "stack/eslint-plugin-security"
},
"homepage": "https://rushstack.io",
"keywords": [

Просмотреть файл

@ -4,7 +4,9 @@
"description": "An ESLint plugin providing supplementary rules for use with the @rushstack/eslint-config package",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack/tree/master/stack/eslint-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "stack/eslint-plugin"
},
"homepage": "https://rushstack.io",
"keywords": [

Просмотреть файл

@ -7,7 +7,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/webpack/loader-load-themed-styles"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/loader-load-themed-styles"
},
"scripts": {
"build": "heft test --clean"

Просмотреть файл

@ -7,7 +7,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/webpack/loader-raw-script"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/loader-raw-script"
},
"scripts": {
"build": "heft test --clean"

Просмотреть файл

@ -7,7 +7,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/webpack/localization-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/localization-plugin"
},
"scripts": {
"build": "heft build --clean"

Просмотреть файл

@ -7,7 +7,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/rushstack/tree/master/webpack/module-minifier-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/module-minifier-plugin"
},
"engines": {
"node": ">=10.17.1"

Просмотреть файл

@ -7,7 +7,8 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack/tree/master/webpack/set-webpack-public-path-plugin"
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/set-webpack-public-path-plugin"
},
"scripts": {
"build": "heft build --clean"