├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── apps └── my-app │ ├── package.json │ ├── src │ └── start.ts │ └── tsconfig.json ├── common ├── config │ └── rush │ │ ├── .npmrc │ │ ├── .npmrc-publish │ │ ├── .pnpmfile.cjs │ │ ├── alert-scripts │ │ └── rush-alert-node-upgrade.js │ │ ├── artifactory.json │ │ ├── browser-approved-packages.json │ │ ├── build-cache.json │ │ ├── cobuild.json │ │ ├── command-line.json │ │ ├── common-versions.json │ │ ├── custom-tips.json │ │ ├── deploy.json │ │ ├── experiments.json │ │ ├── nonbrowser-approved-packages.json │ │ ├── pnpm-config.json │ │ ├── pnpm-lock.yaml │ │ ├── repo-state.json │ │ ├── rush-alerts.json │ │ ├── rush-plugins.json │ │ ├── subspaces.json │ │ └── version-policies.json ├── git-hooks │ └── commit-msg.sample └── scripts │ ├── install-run-rush-pnpm.js │ ├── install-run-rush.js │ ├── install-run-rushx.js │ ├── install-run.js │ └── my-global-command.js ├── libraries └── my-controls │ ├── package.json │ ├── src │ ├── MyClass.ts │ └── index.ts │ └── tsconfig.json ├── rush.json └── tools └── my-toolchain ├── bin ├── my-build.js └── my-bulk-command.js ├── includes └── tsconfig-web.json ├── package.json ├── src ├── start.ts └── startCommand.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/my-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/apps/my-app/package.json -------------------------------------------------------------------------------- /apps/my-app/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/apps/my-app/src/start.ts -------------------------------------------------------------------------------- /apps/my-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/apps/my-app/tsconfig.json -------------------------------------------------------------------------------- /common/config/rush/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/.npmrc -------------------------------------------------------------------------------- /common/config/rush/.npmrc-publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/.npmrc-publish -------------------------------------------------------------------------------- /common/config/rush/.pnpmfile.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/.pnpmfile.cjs -------------------------------------------------------------------------------- /common/config/rush/alert-scripts/rush-alert-node-upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/alert-scripts/rush-alert-node-upgrade.js -------------------------------------------------------------------------------- /common/config/rush/artifactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/artifactory.json -------------------------------------------------------------------------------- /common/config/rush/browser-approved-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/browser-approved-packages.json -------------------------------------------------------------------------------- /common/config/rush/build-cache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/build-cache.json -------------------------------------------------------------------------------- /common/config/rush/cobuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/cobuild.json -------------------------------------------------------------------------------- /common/config/rush/command-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/command-line.json -------------------------------------------------------------------------------- /common/config/rush/common-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/common-versions.json -------------------------------------------------------------------------------- /common/config/rush/custom-tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/custom-tips.json -------------------------------------------------------------------------------- /common/config/rush/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/deploy.json -------------------------------------------------------------------------------- /common/config/rush/experiments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/experiments.json -------------------------------------------------------------------------------- /common/config/rush/nonbrowser-approved-packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/nonbrowser-approved-packages.json -------------------------------------------------------------------------------- /common/config/rush/pnpm-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/pnpm-config.json -------------------------------------------------------------------------------- /common/config/rush/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/pnpm-lock.yaml -------------------------------------------------------------------------------- /common/config/rush/repo-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/repo-state.json -------------------------------------------------------------------------------- /common/config/rush/rush-alerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/rush-alerts.json -------------------------------------------------------------------------------- /common/config/rush/rush-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/rush-plugins.json -------------------------------------------------------------------------------- /common/config/rush/subspaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/subspaces.json -------------------------------------------------------------------------------- /common/config/rush/version-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/config/rush/version-policies.json -------------------------------------------------------------------------------- /common/git-hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/git-hooks/commit-msg.sample -------------------------------------------------------------------------------- /common/scripts/install-run-rush-pnpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/scripts/install-run-rush-pnpm.js -------------------------------------------------------------------------------- /common/scripts/install-run-rush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/scripts/install-run-rush.js -------------------------------------------------------------------------------- /common/scripts/install-run-rushx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/scripts/install-run-rushx.js -------------------------------------------------------------------------------- /common/scripts/install-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/scripts/install-run.js -------------------------------------------------------------------------------- /common/scripts/my-global-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/common/scripts/my-global-command.js -------------------------------------------------------------------------------- /libraries/my-controls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/libraries/my-controls/package.json -------------------------------------------------------------------------------- /libraries/my-controls/src/MyClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/libraries/my-controls/src/MyClass.ts -------------------------------------------------------------------------------- /libraries/my-controls/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/libraries/my-controls/src/index.ts -------------------------------------------------------------------------------- /libraries/my-controls/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/libraries/my-controls/tsconfig.json -------------------------------------------------------------------------------- /rush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/rush.json -------------------------------------------------------------------------------- /tools/my-toolchain/bin/my-build.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/start.js') 3 | -------------------------------------------------------------------------------- /tools/my-toolchain/bin/my-bulk-command.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/startCommand.js') 3 | -------------------------------------------------------------------------------- /tools/my-toolchain/includes/tsconfig-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/tools/my-toolchain/includes/tsconfig-web.json -------------------------------------------------------------------------------- /tools/my-toolchain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/tools/my-toolchain/package.json -------------------------------------------------------------------------------- /tools/my-toolchain/src/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/tools/my-toolchain/src/start.ts -------------------------------------------------------------------------------- /tools/my-toolchain/src/startCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/tools/my-toolchain/src/startCommand.ts -------------------------------------------------------------------------------- /tools/my-toolchain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/rush-example/HEAD/tools/my-toolchain/tsconfig.json --------------------------------------------------------------------------------