Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
* @netlify/team-runtime
/packages/dev/**/* @netlify/ecosystem-pod-frameworks
/packages/dev-utils/**/* @netlify/ecosystem-pod-frameworks
/packages/identity/**/* @netlify/pod-experience
/packages/nuxt-module/**/* @netlify/ecosystem-pod-frameworks
/packages/vite-plugin/**/* @netlify/ecosystem-pod-frameworks
/‎packages/vite-plugin-tanstack-start/**/* @netlify/ecosystem-pod-frameworks
11 changes: 11 additions & 0 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,17 @@ jobs:
fi
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- if:
${{ steps.release.outputs['packages/identity/prod--release_created'] || github.event_name ==
'workflow_dispatch' }}
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
npm publish packages/identity/prod/ --provenance --access=public || true
else
npm publish packages/identity/prod/ --provenance --access=public
fi
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- if: ${{ steps.release.outputs['packages/images--release_created'] || github.event_name == 'workflow_dispatch' }}
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
Expand Down
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"packages/functions/prod": "5.2.0",
"packages/functions/dev": "1.2.6",
"packages/headers": "2.1.8",
"packages/identity/prod": "1.0.0",
"packages/images": "1.3.7",
"packages/nuxt-module": "0.2.39",
"packages/otel": "5.1.5",
Expand Down
121 changes: 121 additions & 0 deletions eslint_temporary_suppressions.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,127 @@ export default [
'@typescript-eslint/no-unused-vars': 'off',
},
},
{
files: ['packages/identity/prod/src/account.ts'],
rules: {
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
},
},
{
files: ['packages/identity/prod/src/admin.ts'],
rules: {
'@typescript-eslint/no-unsafe-assignment': 'off',
},
},
{
files: ['packages/identity/prod/src/auth.ts'],
rules: {
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
},
},
{
files: ['packages/identity/prod/src/config.ts'],
rules: {
'@typescript-eslint/no-unnecessary-condition': 'off',
},
},
{
files: ['packages/identity/prod/src/cookies.ts'],
rules: {
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
},
},
{
files: ['packages/identity/prod/src/environment.ts'],
rules: {
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
},
},
{
files: ['packages/identity/prod/src/events.ts'],
rules: {
'@typescript-eslint/no-unsafe-assignment': 'off',
},
},
{
files: ['packages/identity/prod/src/nextjs.ts'],
rules: {
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
},
},
{
files: ['packages/identity/prod/src/refresh.ts'],
rules: {
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
},
},
{
files: ['packages/identity/prod/src/user.ts'],
rules: {
'@typescript-eslint/no-unnecessary-condition': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
},
},
{
files: ['packages/identity/prod/test/account.browser.test.ts'],
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
},
},
{
files: ['packages/identity/prod/test/admin.server.test.ts'],
rules: {
'@typescript-eslint/no-unsafe-member-access': 'off',
},
},
{
files: ['packages/identity/prod/test/auth.browser.test.ts'],
rules: {
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
},
},
{
files: ['packages/identity/prod/test/auth.server.test.ts'],
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
},
},
{
files: ['packages/identity/prod/test/refresh.browser.test.ts'],
rules: {
'@typescript-eslint/no-unsafe-return': 'off',
},
},
{
files: ['packages/identity/prod/test/user.test.ts'],
rules: {
'@typescript-eslint/no-unsafe-member-access': 'off',
},
},
Comment thread
khendrikse marked this conversation as resolved.
{
files: ['packages/images/src/main.test.ts'],
rules: {
Expand Down
Loading
Loading