mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2024-11-20 19:07:20 +01:00
Merge branch 'main' of https://github.com/Dan6erbond/sk-auth into main
This commit is contained in:
commit
70fc8ac09e
@ -3436,13 +3436,13 @@ simple-swizzle@^0.2.2:
|
||||
is-arrayish "^0.3.1"
|
||||
|
||||
"sk-auth@file:..":
|
||||
version "0.3.5"
|
||||
version "0.3.6"
|
||||
dependencies:
|
||||
cookie "^0.4.1"
|
||||
jsonwebtoken "^8.5.1"
|
||||
|
||||
"sk-auth@file:../":
|
||||
version "0.3.5"
|
||||
version "0.3.6"
|
||||
dependencies:
|
||||
cookie "^0.4.1"
|
||||
jsonwebtoken "^8.5.1"
|
||||
|
@ -1,5 +1,6 @@
|
||||
{
|
||||
"internal": true,
|
||||
"main": "../dist/client/index.js",
|
||||
"module": "../dist/client/index.esm.js",
|
||||
"types": "../dist/client/index.d.ts"
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
"version": "0.3.7",
|
||||
"description": "Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.esm.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./dist/index.js",
|
||||
|
@ -1,5 +1,6 @@
|
||||
{
|
||||
"internal": true,
|
||||
"main": "../dist/providers/index.js",
|
||||
"module": "../dist/providers/index.esm.js",
|
||||
"types": "../dist/providers/index.d.ts"
|
||||
}
|
||||
|
@ -8,17 +8,15 @@ const globals = {
|
||||
...packageJson.devDependencies,
|
||||
};
|
||||
|
||||
export default [
|
||||
{
|
||||
/** @type {import('rollup').RollupOptions} */
|
||||
const baseConfig = {
|
||||
input: ["src/**/*.ts"],
|
||||
output: {
|
||||
dir: "dist",
|
||||
sourcemap: true,
|
||||
format: "cjs",
|
||||
},
|
||||
plugins: [
|
||||
esbuild(),
|
||||
multiInput(),
|
||||
typescript({
|
||||
emitDeclarationOnly: true,
|
||||
sourceMap: false,
|
||||
@ -29,5 +27,31 @@ export default [
|
||||
"@sveltejs/kit/assets/runtime/app/navigation",
|
||||
"@sveltejs/kit/assets/runtime/app/stores",
|
||||
],
|
||||
};
|
||||
|
||||
/** @type {Array.<import('rollup').RollupOptions>} */
|
||||
export default [
|
||||
{
|
||||
...baseConfig,
|
||||
output: {
|
||||
...baseConfig.output,
|
||||
format: "cjs",
|
||||
},
|
||||
plugins: [...baseConfig.plugins, multiInput()],
|
||||
},
|
||||
{
|
||||
...baseConfig,
|
||||
output: {
|
||||
...baseConfig.output,
|
||||
format: "esm",
|
||||
},
|
||||
plugins: [
|
||||
...baseConfig.plugins,
|
||||
multiInput({
|
||||
/** @param {string} output */
|
||||
transformOutputPath: (output) =>
|
||||
`${output.split(".").slice(0, -1).join(".")}.esm.${output.split(".").slice(-1)}`,
|
||||
}),
|
||||
],
|
||||
},
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user