-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
254 additions
and
319 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,8 @@ | ||
# https://moonrepo.dev/docs/config/workspace | ||
$schema: "https://moonrepo.dev/schemas/workspace.json" | ||
|
||
# Require a specific version of moon while running commands, otherwise fail. | ||
# versionConstraint: '>=1.0.0' | ||
|
||
# Extend and inherit an external configuration file. Must be a valid HTTPS URL or file system path. | ||
# extends: './shared/workspace.yml' | ||
|
||
# REQUIRED: A map of all projects found within the workspace, or a list or file system globs. | ||
# When using a map, each entry requires a unique project ID as the map key, and a file system | ||
# 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. | ||
$schema: 'https://moonrepo.dev/schemas/workspace.json' | ||
projects: | ||
- "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, | ||
# computing affected files, and much more. | ||
ui: 'docs/ui' | ||
contrast-colors: 'packages/contrast-colors' | ||
vcs: | ||
# The client to use when managing the repository. | ||
# Accepts "git". Defaults to "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" | ||
manager: 'git' | ||
defaultBranch: 'main' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@adobe/leonardo-ui", | ||
"private": true, | ||
"version": "1.4.4", | ||
"version": "1.4.5", | ||
"description": "Demonstration UI for Leonardo", | ||
"repository": "[email protected]:adobe/leonardo.git", | ||
"author": "Nate Baldwin <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
{ | ||
"name": "leonardo-monorepo", | ||
"version": "0.0.0", | ||
"private": true, | ||
"author": "Nate Baldwin <[email protected]>", | ||
"scripts": { | ||
"moon": "moon", | ||
"pre-commit": "lint-staged", | ||
"prepare": "husky install", | ||
"prepare": "husky || true", | ||
"release": "changeset publish" | ||
}, | ||
"repository": { | ||
|
@@ -15,23 +14,24 @@ | |
}, | ||
"contributors": [ | ||
"Larry Davis <[email protected]>", | ||
"Frank Karstens <[email protected]>" | ||
"Frank Karstens <[email protected]>", | ||
"Garth Braithwaite <[email protected]> (http://garthdb.com/)" | ||
], | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.1", | ||
"@commitlint/cli": "^18.4.3", | ||
"@commitlint/config-conventional": "^18.4.3", | ||
"@commitlint/cli": "^19.1.0", | ||
"@commitlint/config-conventional": "^19.1.0", | ||
"@moonrepo/cli": "^1.22.7", | ||
"@parcel/packager-raw-url": "2.11.0", | ||
"@parcel/transformer-sass": "2.11.0", | ||
"@parcel/transformer-webmanifest": "2.11.0", | ||
"ava": "^6.0.1", | ||
"ava": "^6.1.2", | ||
"buffer": "^5.5.0||^6.0.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": "^15.2.0", | ||
"husky": "^9.0.11", | ||
"lint-staged": "^15.2.2", | ||
"path-browserify": "^1.0.0", | ||
"prettier": "^3.1.1", | ||
"prettier": "^3.2.5", | ||
"process": "^0.11.10", | ||
"vm-browserify": "^1.1.2" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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": "[email protected]:adobe/leonardo.git", | ||
"main": "./index.js", | ||
|
Oops, something went wrong.