Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f4a2430

Browse files
committedDec 14, 2022
fix(release): build packages before publish
1 parent 575bcb5 commit f4a2430

File tree

7 files changed

+42
-32
lines changed

7 files changed

+42
-32
lines changed
 

‎package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"repository": "https://github.com/nextauthjs/next-auth.git",
66
"scripts": {
77
"build:app": "turbo run build --filter=next-auth-app",
8-
"build": "turbo run build --filter=next-auth --filter=@next-auth/* --no-deps",
8+
"build": "turbo run build --filter=next-auth --filter=@next-auth/* --filter=@auth/* --no-deps",
99
"lint": "turbo run lint --filter=!next-auth-docs --parallel",
1010
"test": "turbo run test --concurrency=1 --filter=!@next-auth/pouchdb-adapter --filter=!@next-auth/upstash-redis-adapter --filter=!next-auth-* --filter=[HEAD^1]",
1111
"clean": "turbo run clean --no-cache",
@@ -32,7 +32,7 @@
3232
"eslint-plugin-node": "^11.1.0",
3333
"eslint-plugin-promise": "^6.0.0",
3434
"husky": "^7.0.4",
35-
"prettier": "2.7.1",
35+
"prettier": "2.8.1",
3636
"pretty-quick": "^3.1.2",
3737
"semver": "7.3.5",
3838
"stream-to-array": "2.3.0",

‎packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@panva/hkdf": "1.0.2",
4545
"cookie": "0.5.0",
4646
"jose": "4.11.1",
47-
"oauth4webapi": "2.0.4",
47+
"oauth4webapi": "2.0.5",
4848
"preact": "10.11.3",
4949
"preact-render-to-string": "5.2.3"
5050
},
@@ -72,4 +72,4 @@
7272
"postcss": "8.4.19",
7373
"postcss-nested": "6.0.0"
7474
}
75-
}
75+
}

‎packages/frameworks-sveltekit/.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
"prettier",
88
],
99
plugins: ["svelte3", "@typescript-eslint"],
10-
ignorePatterns: ["*.cjs"],
10+
ignorePatterns: ["*.cjs", "client.*", "index.*"],
1111
overrides: [{ files: ["*.svelte"], processor: "svelte3/svelte3" }],
1212
settings: {
1313
"svelte3/typescript": () => require("typescript"),

‎packages/frameworks-sveltekit/.prettierignore

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,5 @@ node_modules
33
/build
44
/.svelte-kit
55
/package
6-
.env
7-
.env.*
8-
!.env.example
9-
10-
# Ignore files for PNPM, NPM and YARN
11-
pnpm-lock.yaml
12-
package-lock.json
13-
yarn.lock
6+
/index.*
7+
/client.*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# SvelteKit Auth
22

3-
Authentication for SvelteKit.
3+
Authentication for SvelteKit.

‎packages/frameworks-sveltekit/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"eslint-config-prettier": "^8.5.0",
3232
"eslint-plugin-svelte3": "^4.0.0",
3333
"next-auth": "workspace:*",
34-
"prettier": "^2.8.0",
34+
"prettier": "2.8.1",
3535
"prettier-plugin-svelte": "^2.8.1",
3636
"svelte": "^3.54.0",
3737
"svelte-check": "^2.9.2",
@@ -61,4 +61,4 @@
6161
},
6262
"./package.json": "./package.json"
6363
}
64-
}
64+
}

‎pnpm-lock.yaml

Lines changed: 32 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

1 commit comments

Comments
 (1)

vercel[bot] commented on Dec 14, 2022

@vercel[bot]
Please sign in to comment.