feat: add the root path fix.
This commit is contained in:
parent
3ac1810435
commit
5c2b3a93b0
52
biome.json
52
biome.json
@ -1,28 +1,28 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
||||||
"formatter": {
|
"formatter": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"formatWithErrors": false,
|
"formatWithErrors": false,
|
||||||
"indentStyle": "space",
|
"indentStyle": "space",
|
||||||
"indentWidth": 2,
|
"indentWidth": 2,
|
||||||
"lineEnding": "lf",
|
"lineEnding": "lf",
|
||||||
"lineWidth": 120,
|
"lineWidth": 120,
|
||||||
"attributePosition": "auto"
|
"attributePosition": "auto"
|
||||||
},
|
},
|
||||||
"organizeImports": { "enabled": true },
|
"organizeImports": { "enabled": true },
|
||||||
"linter": { "enabled": true, "rules": { "recommended": true } },
|
"linter": { "enabled": true, "rules": { "recommended": true } },
|
||||||
"javascript": {
|
"javascript": {
|
||||||
"formatter": {
|
"formatter": {
|
||||||
"jsxQuoteStyle": "double",
|
"jsxQuoteStyle": "double",
|
||||||
"quoteProperties": "asNeeded",
|
"quoteProperties": "asNeeded",
|
||||||
"trailingCommas": "all",
|
"trailingCommas": "all",
|
||||||
"semicolons": "always",
|
"semicolons": "always",
|
||||||
"arrowParentheses": "always",
|
"arrowParentheses": "always",
|
||||||
"bracketSpacing": true,
|
"bracketSpacing": true,
|
||||||
"bracketSameLine": false,
|
"bracketSameLine": false,
|
||||||
"quoteStyle": "single",
|
"quoteStyle": "single",
|
||||||
"attributePosition": "auto"
|
"attributePosition": "auto"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"overrides": [{ "include": ["**/*.astro"] }]
|
"overrides": [{ "include": ["**/*.astro"] }]
|
||||||
}
|
}
|
||||||
|
@ -1,16 +1,11 @@
|
|||||||
import { defineBuildConfig } from 'unbuild'
|
import { defineBuildConfig } from 'unbuild';
|
||||||
|
|
||||||
export default defineBuildConfig({
|
export default defineBuildConfig({
|
||||||
entries: [
|
entries: ['src/index'],
|
||||||
'src/index',
|
|
||||||
],
|
|
||||||
clean: true,
|
clean: true,
|
||||||
declaration: true,
|
declaration: true,
|
||||||
rollup: {
|
rollup: {
|
||||||
emitCJS: true,
|
emitCJS: true,
|
||||||
},
|
},
|
||||||
externals: [
|
externals: ['astro', 'astro/zod'],
|
||||||
'astro',
|
});
|
||||||
'astro/zod'
|
|
||||||
],
|
|
||||||
})
|
|
||||||
|
12
package.json
12
package.json
@ -2,11 +2,7 @@
|
|||||||
"name": "astro-uploader",
|
"name": "astro-uploader",
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"description": "A uploader for uploading the Astro generated files through the S3 API.",
|
"description": "A uploader for uploading the Astro generated files through the S3 API.",
|
||||||
"keywords": [
|
"keywords": ["Astro", "S3", "withastro"],
|
||||||
"Astro",
|
|
||||||
"S3",
|
|
||||||
"withastro"
|
|
||||||
],
|
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/syhily/astro-uploader/issues"
|
"url": "https://github.com/syhily/astro-uploader/issues"
|
||||||
},
|
},
|
||||||
@ -27,12 +23,10 @@
|
|||||||
"main": "./dist/index.mjs",
|
"main": "./dist/index.mjs",
|
||||||
"module": "./dist/index.mjs",
|
"module": "./dist/index.mjs",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"files": [
|
"files": ["dist"],
|
||||||
"dist"
|
|
||||||
],
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "unbuild",
|
"build": "unbuild",
|
||||||
"format": "biome format src --write",
|
"format": "biome format . --write",
|
||||||
"stub": "unbuild --stub"
|
"stub": "unbuild --stub"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -38,7 +38,7 @@ const S3Options = z
|
|||||||
region: z.string().min(1).default('auto'),
|
region: z.string().min(1).default('auto'),
|
||||||
endpoint: z.string().url().optional(),
|
endpoint: z.string().url().optional(),
|
||||||
bucket: z.string().min(1),
|
bucket: z.string().min(1),
|
||||||
root: z.string().default('/'),
|
root: z.string().default(''),
|
||||||
accessKey: z.string().min(1),
|
accessKey: z.string().min(1),
|
||||||
secretAccessKey: z.string().min(1),
|
secretAccessKey: z.string().min(1),
|
||||||
extraOptions: z.record(z.string(), z.string()).default({}),
|
extraOptions: z.record(z.string(), z.string()).default({}),
|
||||||
@ -95,10 +95,6 @@ class Uploader {
|
|||||||
this.override = override;
|
this.override = override;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async delete(key: string): Promise<void> {
|
|
||||||
await this.operator.delete(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
async isExist(key: string, size: number): Promise<boolean> {
|
async isExist(key: string, size: number): Promise<boolean> {
|
||||||
const exist = await this.operator.isExist(key);
|
const exist = await this.operator.isExist(key);
|
||||||
if (exist) {
|
if (exist) {
|
||||||
|
Loading…
Reference in New Issue
Block a user