Skip to content

Commit

Permalink
chore: merge main latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifgp committed Apr 17, 2024
1 parent 8328201 commit e1e0750
Show file tree
Hide file tree
Showing 36 changed files with 7,961 additions and 6,004 deletions.
5 changes: 2 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@
"sanity",
"sanity/typescript",
"sanity/react",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended",
"plugin:react/jsx-runtime",
"prettier"
],
"plugins": ["simple-import-sort"],
"rules": {
"react/prop-types": "off",
"react/require-default-props": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
"simple-import-sort/exports": "error",
"@typescript-eslint/no-explicit-any": "off"
}
}
File renamed without changes.
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
runs-on: ubuntu-latest
name: Lint & Build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/*
Expand Down Expand Up @@ -85,8 +85,8 @@ jobs:
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: ${{ matrix.node }}
Expand All @@ -105,12 +105,12 @@ jobs:
runs-on: ubuntu-latest
name: Semantic release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
# Need to fetch entire commit history to
# analyze every commit since last release
fetch-depth: 0
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/*
Expand All @@ -123,5 +123,6 @@ jobs:
# e.g. git tags were pushed but it exited before `npm publish`
if: always()
env:
NPM_CONFIG_PROVENANCE: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.0](https://github.com/sanity-io/document-internationalization/compare/v2.1.2...v3.0.0) (2024-04-09)

### ⚠ BREAKING CHANGES

- add strict ESM support

### Features

- add strict ESM support ([f8ed232](https://github.com/sanity-io/document-internationalization/commit/f8ed23271e401ddf6079ff6090ff1e34165c5ff8))

## [2.1.2](https://github.com/sanity-io/document-internationalization/compare/v2.1.1...v2.1.2) (2024-04-09)

### Bug Fixes

- add provenance ([e31635f](https://github.com/sanity-io/document-internationalization/commit/e31635fa09f9a7dda3141f6debb225fa4ba6b226))

## [2.1.1](https://github.com/sanity-io/document-internationalization/compare/v2.1.0...v2.1.1) (2024-04-04)

### Bug Fixes

- reinit languages on workspace switch ([d1102cb](https://github.com/sanity-io/document-internationalization/commit/d1102cb1f04565fadfac98816d24bb2d571b3f4b))

## [2.1.0](https://github.com/sanity-io/document-internationalization/compare/v2.0.3...v2.1.0) (2024-02-26)

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ defineField({
hidden: true,
}),

// Nested value path name are also possible E.g:
// Nested value paths name are also possible e.g:
{
name: 'option'
type: 'object',
Expand Down
Loading

0 comments on commit e1e0750

Please sign in to comment.