fast-tooling/package.json

64 строки
2.0 KiB
JSON
Исходник Обычный вид История

{
"name": "@microsoft/design-to-code-repository",
"description": "A system of development tools, and utilities used à la carte or as a suite to build enterprise-grade websites and applications.",
"version": "0.1.0",
"author": {
"name": "Microsoft",
"url": "https://discord.gg/FcSNfg4"
},
"license": "MIT",
"private": true,
"workspaces": [
"./packages/fast-tooling",
"./packages/fast-tooling-react",
"./packages/fast-tooling-wasm",
"./website"
],
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/design-to-code.git"
},
"bugs": {
"url": "https://github.com/microsoft/design-to-code/issues/new/choose"
},
"scripts": {
"bump": "beachball bump",
"change": "beachball change",
"check": "beachball check --changehint \"Run 'npm run change' to generate a change file\"",
"publish": "beachball publish --workspaces",
"publish-ci": "beachball publish -y --access public --workspaces",
"test:diff:error": "echo \"Untracked files exist, try running npm prepare to identify the culprit.\" && exit 1",
"test:diff": "git update-index --refresh && git diff-index --quiet HEAD -- || npm run test:diff:error",
"test": "npm run prettier --workspaces --if-present && npm run test:diff && npm run test --workspaces --if-present"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,html}": [
"prettier --write"
]
},
"devDependencies": {
"@playwright/test": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
Bump parse-path and beachball (#226) Bumps [parse-path](https://github.com/IonicaBizau/parse-path) and [beachball](https://github.com/microsoft/beachball). These dependencies needed to be updated together. Updates `parse-path` from 4.0.4 to 5.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/IonicaBizau/parse-path/releases">parse-path's releases</a>.</em></p> <blockquote> <h2>5.0.0</h2> <h3><code>parse-path</code> 5.0.0</h3> <p>:star: This is a major release of <code>parse-path</code>! :star:</p> <h4>Breaking changes</h4> <ul> <li><code>parse-path</code> will not parse <code>git@...</code> ssh URLs anymore. Use <code>parse-url</code> for that.</li> <li>If the input url has a trailing slash, the trailing slash will be added in the <code>pathname</code> too.</li> <li>The <code>port</code> field is a string. By default empty.</li> <li>Added the <code>password</code> field (default: <code>&quot;&quot;</code>)</li> <li>The resource may contain the <code>port</code> in it (e.g. <code>resource: &quot;domain.com:4200&quot;</code>).</li> </ul> <h4>Features</h4> <ul> <li>Faster</li> <li>More secure</li> <li>Cleaner codebase</li> </ul> <p>Any questions, suggestions, contributions are always welcome! :blush:</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/IonicaBizau/parse-path/commit/f2b79ca482d18d790d8265ac40d3a50deb14de7b"><code>f2b79ca</code></a> Updated docs</li> <li><a href="https://github.com/IonicaBizau/parse-path/commit/4ebc6eda86ecc31b3b2d33d1dff60c843d327f20"><code>4ebc6ed</code></a> :arrow_up: 5.0.0 :tada:</li> <li><a href="https://github.com/IonicaBizau/parse-path/commit/01cd545bf9954e1d9649e45b3ee252a55d6b8080"><code>01cd545</code></a> :memo:</li> <li><a href="https://github.com/IonicaBizau/parse-path/commit/dd2141a853c261a312dede0d45866bb07f45a08e"><code>dd2141a</code></a> Docs</li> <li><a href="https://github.com/IonicaBizau/parse-path/commit/624c19e466ae50aca0e278a6b12c30e547a91a49"><code>624c19e</code></a> Empty password</li> <li><a href="https://github.com/IonicaBizau/parse-path/commit/d974ff8d6587561572bc2f6691686a7be8bc2387"><code>d974ff8</code></a> :arrow_up: 5.0.0 :tada:</li> <li><a href="https://github.com/IonicaBizau/parse-path/commit/f9ad8856a3c8ae18e1cf4caef5edbabbc42840e8"><code>f9ad885</code></a> Refactor the codebase to make it more secure</li> <li>See full diff in <a href="https://github.com/IonicaBizau/parse-path/compare/4.0.4...5.0.0">compare view</a></li> </ul> </details> <br /> Updates `beachball` from 2.16.0 to 2.30.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/microsoft/beachball/blob/master/CHANGELOG.md">beachball's changelog</a>.</em></p> <blockquote> <h2>2.30.1</h2> <p>Wed, 17 Aug 2022 08:02:47 GMT</p> <h3>Patches</h3> <ul> <li>Error on duplicate package names in different workspaces (for a monorepo with multiple workspaces) (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> </ul> <h2>2.30.0</h2> <p>Thu, 11 Aug 2022 21:13:57 GMT</p> <h3>Minor changes</h3> <ul> <li>Use ES2019 output (compatible with Node 12+) (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> </ul> <h3>Patches</h3> <ul> <li>Exit publishing early if only invalid change files are present (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> </ul> <h2>2.29.1</h2> <p>Thu, 11 Aug 2022 21:09:34 GMT</p> <h3>Patches</h3> <ul> <li>Improve auth error handling and other logs during publishing, and use the npm helper everywhere (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> <li>Rename file <code>monorepo/utils.ts</code> to <code>monorepo/isPathIncluded.ts</code> (no API change) (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> <li>Add verbose logs about determining changed packages (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> <li>Fix calculation of changed packages on Windows (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> </ul> <h2>2.29.0</h2> <p>Wed, 10 Aug 2022 08:03:11 GMT</p> <h3>Minor changes</h3> <ul> <li>Update typescript to 4.3 (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> </ul> <h3>Patches</h3> <ul> <li>Always use console.log not process.stdout for logging (<a href="mailto:elcraig@microsoft.com">elcraig@microsoft.com</a>)</li> <li>Moving non essential and retried commands to git from gitFailFast (<a href="mailto:viditganpi10@gmail.com">viditganpi10@gmail.com</a>)</li> </ul> <h2>2.28.0</h2> <p>Tue, 09 Aug 2022 06:34:24 GMT</p> <h3>Minor changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/beachball/commit/b22545ec6b1c3472b6e70102b87a6a877949728c"><code>b22545e</code></a> applying package updates</li> <li><a href="https://github.com/microsoft/beachball/commit/402d76de4de90a31f883be8dd063509445ce542d"><code>402d76d</code></a> Update devDependency <code>@​types/lodash</code> to v4.14.183 (<a href="https://github-redirect.dependabot.com/microsoft/beachball/issues/760">#760</a>)</li> <li><a href="https://github.com/microsoft/beachball/commit/761b0caa94c424f9c588a07c663d4fb5f0e81aa8"><code>761b0ca</code></a> Run E2E tests in parallel (<a href="https://github-redirect.dependabot.com/microsoft/beachball/issues/758">#758</a>)</li> <li><a href="https://github.com/microsoft/beachball/commit/6f777d98c7416d8cfcc3290414287a6fe6f0df71"><code>6f777d9</code></a> Fix logic to error on duplicate package names and add test (<a href="https://github-redirect.dependabot.com/microsoft/beachball/issues/761">#761</a>)</li> <li><a href="https://github.com/microsoft/beachball/commit/0db5f3504371fe91bef5116c2a6b857269599c40"><code>0db5f35</code></a> Multi-workspace tests: replace remaining &quot;repo&quot; usage with &quot;workspace&quot;</li> <li><a href="https://github.com/microsoft/beachball/commit/6b18554e8a2c8371c0a3656ac2777f2bb461a901"><code>6b18554</code></a> Unify test repository fixtures and make customization easier (<a href="https://github-redirect.dependabot.com/microsoft/beachball/issues/754">#754</a>)</li> <li><a href="https://github.com/microsoft/beachball/commit/03a1332b11b9df3bb7dc91252549b096b6802a46"><code>03a1332</code></a> Error on duplicate package names (<a href="https://github-redirect.dependabot.com/microsoft/beachball/issues/759">#759</a>)</li> <li><a href="https://github.com/microsoft/beachball/commit/6c8a9089f8162e791baaaa7b20dfd226e423905d"><code>6c8a908</code></a> applying package updates</li> <li><a href="https://github.com/microsoft/beachball/commit/af775b92895b648dd1b9aae1424d7057ac12a267"><code>af775b9</code></a> Change &quot;MonoRepo&quot; to &quot;Monorepo&quot; in tests to match more common casing</li> <li><a href="https://github.com/microsoft/beachball/commit/89664388e944e0f98d21e59cc0f935258e99f28f"><code>8966438</code></a> Rename &quot;multi-monorepo&quot; tests to &quot;multi-workspace&quot;</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/beachball/compare/beachball_v2.16.0...beachball_v2.30.1">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/microsoft/design-to-code/network/alerts). </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jane Chu <7559015+janechu@users.noreply.github.com>
2022-09-09 03:26:55 +03:00
"beachball": "^2.30.1",
"chalk": "^2.4.2",
"copyfiles": "^2.4.1",
"dotenv": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.19.0",
"glob": "^7.1.2",
"husky": "^4.2.5",
"lint-staged": "^10.1.2",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"yargs": "^16.2.0"
}
}