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

chore: update beachball for versioning FAST Element to a major release #7015

Merged
merged 5 commits into from
Aug 19, 2024
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ FAST is dedicated to providing support for native Web Components and modern Web
* Create reusable UI components with `@microsoft/fast-element`, all based on W3C Web Component standards.
* Integrate FAST Web Components with any library, framework, or build system. You can adopt incrementally without re-writing your existing systems.

For an in-depth explanation of FAST [see our docs introduction](https://www.fast.design/docs/introduction/).
For an in-depth explanation of FAST [see our docs introduction](https://fast.design/docs/introduction/).

## Packages

Expand Down
1 change: 0 additions & 1 deletion beachball.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports = {
disallowedChangeTypes: ["major"],
ignorePatterns: [
".ignore",
".github/",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "major",
"comment": "Update @microsoft/fast-element to major version",
"packageName": "@microsoft/fast-element",
"email": "13071055+chrisdholt@users.noreply.github.com",
"dependentChangeType": "prerelease"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "update beachball and move disallowedChangeTypes to package.json",
"packageName": "@microsoft/fast-router",
"email": "13071055+chrisdholt@users.noreply.github.com",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "update beachball and move disallowedChangeTypes to package.json",
"packageName": "@microsoft/fast-ssr",
"email": "13071055+chrisdholt@users.noreply.github.com",
"dependentChangeType": "none"
}
2 changes: 1 addition & 1 deletion packages/web-components/fast-element/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The `fast-element` library is a lightweight means to easily build performant, me

### From NPM

To install the `fast-element` library using `npm`:
To install the latest `fast-element` library using `npm`:

```shell
npm install --save @microsoft/fast-element
Expand Down
8 changes: 8 additions & 0 deletions packages/web-components/fast-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,13 @@
},
"dependencies": {
"@microsoft/fast-element": "^2.0.0-beta.26"
},
"beachball": {
"disallowedChangeTypes": [
"major",
"minor",
"patch"
],
"tag": "alpha"
}
}
12 changes: 10 additions & 2 deletions packages/web-components/fast-ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/fast-ssr",
"version": "1.0.0-beta.33",
"version": "1.0.0-beta.34",
"type": "module",
"author": {
"name": "Microsoft",
Expand Down Expand Up @@ -56,7 +56,7 @@
"tslib": "^2.6.3"
},
"peerDependencies": {
"@microsoft/fast-element": "^2.0.0-beta.26"
"@microsoft/fast-element": "^2.0.0"
},
"devDependencies": {
"@microsoft/fast-element": "^2.0.0-beta.26",
Expand All @@ -67,5 +67,13 @@
"@types/node": "^17.0.17",
"express": "^4.19.2",
"typescript": "~5.3.0"
},
"beachball": {
"disallowedChangeTypes": [
"major",
"minor",
"patch"
],
"tag": "beta"
}
}
Loading