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

feat(*)!: add custom message options to all shapes, validators and constraints #231

Merged
merged 18 commits into from
May 20, 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 .github/workflows/auto-deprecate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
node-version: 20
cache: yarn
registry-url: https://registry.npmjs.org/
registry-url: https://registry.yarnpkg.org/
- name: Install Dependencies
run: yarn --immutable
- name: Deprecate versions
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: 20
cache: yarn
registry-url: https://registry.npmjs.org/
registry-url: https://registry.yarnpkg.org/
- name: Install Dependencies
run: yarn --immutable
- name: Run ESLint
Expand All @@ -37,7 +37,7 @@ jobs:
with:
node-version: 20
cache: yarn
registry-url: https://registry.npmjs.org/
registry-url: https://registry.yarnpkg.org/
- name: Install Dependencies
run: yarn --immutable
- name: Generate Documentation
Expand All @@ -60,11 +60,13 @@ jobs:
with:
node-version: ${{ matrix.node }}
cache: yarn
registry-url: https://registry.npmjs.org/
registry-url: https://registry.yarnpkg.org/
- name: Install Dependencies
run: yarn --immutable
- name: Typecheck And Build Code
run: yarn typecheck && yarn build
- name: Typecheck Code
run: yarn typecheck
- name: Build Code
run: yarn build
- name: Run tests
run: yarn test
- name: Codecov Upload ${{ matrix.node }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deprecate-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
node-version: 20
cache: yarn
registry-url: https://registry.npmjs.org/
registry-url: https://registry.yarnpkg.org/
- name: Install Dependencies
run: yarn --immutable
- name: Deprecate versions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
node-version: 20
cache: yarn
registry-url: https://registry.npmjs.org/
registry-url: https://registry.yarnpkg.org/
- name: Install Dependencies
run: yarn --immutable
- name: Build Documentation
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
overrides: [
...sapphirePrettierConfig.overrides,
{
files: ['README.md'],
files: ['README.md', 'UPGRADING-v3-v4.md'],
options: {
tabWidth: 2,
useTabs: false,
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"**/dist/": true,
"**/.git/": true
},
"cSpell.words": ["bortzmeyer", "fhqwhgads", "manisharaan", "midichlorians", "Pallas", "Plagueis"],
"cSpell.words": ["bortzmeyer", "fhqwhgads", "Jsonified", "manisharaan", "midichlorians", "Pallas", "Plagueis"],
"sonarlint.connectedMode.project": {
"connectionId": "https-sonarqube-sapphirejs-dev",
"projectKey": "sapphiredev_shapeshift_12fd031b-e1ff-436c-8ccb-4fb016c525c9"
Expand Down
Loading