Skip to content

Commit

Permalink
chore: update beachball for versioning FAST Element to a major release (
Browse files Browse the repository at this point in the history
#7015)

* update beachball and move disallowedChangeTypes to package.json

* Change files

* Update readme

* Change files

* update readme
  • Loading branch information
chrisdholt authored Aug 19, 2024
1 parent 8c25044 commit 630a5e2
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 5 deletions.
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"
}
}

0 comments on commit 630a5e2

Please sign in to comment.