diff --git a/.changeset/proud-lies-bathe.md b/.changeset/proud-lies-bathe.md deleted file mode 100644 index a42a3559..00000000 --- a/.changeset/proud-lies-bathe.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@adobe/leonardo-contrast-colors": patch ---- - -* Migrated from Lerna to Moon for monorepo management. -* Setting up Changeset for release management -* Setting up automated releases on NPM -* Migrate from Jest to Ava for better module support diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eec3bef5..e290c258 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,10 +19,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: pnpm/action-setup@v3 + - uses: moonrepo/setup-toolchain@v0 with: - version: 8 - - run: pnpm i + auto-install: true + - run: moon setup - name: Publish id: changesets uses: changesets/action@v1 diff --git a/.moon/workspace.yml b/.moon/workspace.yml index 88e6e73a..665d2850 100644 --- a/.moon/workspace.yml +++ b/.moon/workspace.yml @@ -1,5 +1,5 @@ # https://moonrepo.dev/docs/config/workspace -$schema: "https://moonrepo.dev/schemas/workspace.json" +$schema: 'https://moonrepo.dev/schemas/workspace.json' # Require a specific version of moon while running commands, otherwise fail. # versionConstraint: '>=1.0.0' @@ -12,8 +12,8 @@ $schema: "https://moonrepo.dev/schemas/workspace.json" # path to the project folder as the map value. File paths are relative from the workspace root, # and cannot reference projects located outside the workspace boundary. projects: - - "docs/*" - - "packages/*" + - 'docs/*' + - 'packages/*' # Configures the version control system to utilize within the workspace. A VCS # is required for determining touched (added, modified, etc) files, calculating file hashes, @@ -21,9 +21,9 @@ projects: vcs: # The client to use when managing the repository. # Accepts "git". Defaults to "git". - manager: "git" + manager: 'git' # The default branch (master/main/trunk) in the repository for comparing the # local branch against. For git, this is is typically "master" or "main", # and must include the remote prefix (before /). - defaultBranch: "monorepo" + defaultBranch: 'main' diff --git a/docs/ui/CHANGELOG.md b/docs/ui/CHANGELOG.md index c9f6671f..3756aa76 100644 --- a/docs/ui/CHANGELOG.md +++ b/docs/ui/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 1.4.5 + +### Patch Changes + +- Updated dependencies [342c9ca] + - @adobe/leonardo-contrast-colors@1.0.0 + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/docs/ui/package.json b/docs/ui/package.json index 072edc6b..19181498 100644 --- a/docs/ui/package.json +++ b/docs/ui/package.json @@ -1,7 +1,7 @@ { "name": "@adobe/leonardo-ui", "private": true, - "version": "1.4.4", + "version": "1.4.5", "description": "Demonstration UI for Leonardo", "repository": "git@github.com:adobe/leonardo.git", "author": "Nate Baldwin ", diff --git a/packages/contrast-colors/CHANGELOG.md b/packages/contrast-colors/CHANGELOG.md index 7cfe1b6f..4f724044 100644 --- a/packages/contrast-colors/CHANGELOG.md +++ b/packages/contrast-colors/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 1.0.0 + +### Patch Changes + +- 342c9ca: \* Migrated from Lerna to Moon for monorepo management. + - Setting up Changeset for release management + - Setting up automated releases on NPM + - Migrate from Jest to Ava for better module support + All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. diff --git a/packages/contrast-colors/package.json b/packages/contrast-colors/package.json index 5070242e..d41ccf2e 100644 --- a/packages/contrast-colors/package.json +++ b/packages/contrast-colors/package.json @@ -1,6 +1,6 @@ { "name": "@adobe/leonardo-contrast-colors", - "version": "1.0.0-alpha.18", + "version": "1.0.0", "description": "Generate colors based on a desired contrast ratio", "repository": "git@github.com:adobe/leonardo.git", "main": "./index.js",