diff --git a/utils-docs/.gitignore b/docs/.gitignore similarity index 100% rename from utils-docs/.gitignore rename to docs/.gitignore diff --git a/utils-docs/README.md b/docs/README.md similarity index 100% rename from utils-docs/README.md rename to docs/README.md diff --git a/utils-docs/babel.config.js b/docs/babel.config.js similarity index 100% rename from utils-docs/babel.config.js rename to docs/babel.config.js diff --git a/utils-docs/docs/Constants/_category_.json b/docs/docs/Constants/_category_.json similarity index 100% rename from utils-docs/docs/Constants/_category_.json rename to docs/docs/Constants/_category_.json diff --git a/utils-docs/docs/Constants/app-id.md b/docs/docs/Constants/app-id.md similarity index 100% rename from utils-docs/docs/Constants/app-id.md rename to docs/docs/Constants/app-id.md diff --git a/utils-docs/docs/Constants/currency.md b/docs/docs/Constants/currency.md similarity index 100% rename from utils-docs/docs/Constants/currency.md rename to docs/docs/Constants/currency.md diff --git a/utils-docs/docs/Constants/localstorage.md b/docs/docs/Constants/localstorage.md similarity index 100% rename from utils-docs/docs/Constants/localstorage.md rename to docs/docs/Constants/localstorage.md diff --git a/utils-docs/docs/Constants/url.md b/docs/docs/Constants/url.md similarity index 100% rename from utils-docs/docs/Constants/url.md rename to docs/docs/Constants/url.md diff --git a/utils-docs/docs/Constants/validation.md b/docs/docs/Constants/validation.md similarity index 100% rename from utils-docs/docs/Constants/validation.md rename to docs/docs/Constants/validation.md diff --git a/utils-docs/docs/Utils/_category_.json b/docs/docs/Utils/_category_.json similarity index 100% rename from utils-docs/docs/Utils/_category_.json rename to docs/docs/Utils/_category_.json diff --git a/utils-docs/docs/Utils/format.md b/docs/docs/Utils/format.md similarity index 100% rename from utils-docs/docs/Utils/format.md rename to docs/docs/Utils/format.md diff --git a/utils-docs/docs/Utils/localstorage.md b/docs/docs/Utils/localstorage.md similarity index 100% rename from utils-docs/docs/Utils/localstorage.md rename to docs/docs/Utils/localstorage.md diff --git a/utils-docs/docs/Utils/object.md b/docs/docs/Utils/object.md similarity index 100% rename from utils-docs/docs/Utils/object.md rename to docs/docs/Utils/object.md diff --git a/utils-docs/docs/Utils/promise.md b/docs/docs/Utils/promise.md similarity index 100% rename from utils-docs/docs/Utils/promise.md rename to docs/docs/Utils/promise.md diff --git a/utils-docs/docs/Utils/url.md b/docs/docs/Utils/url.md similarity index 100% rename from utils-docs/docs/Utils/url.md rename to docs/docs/Utils/url.md diff --git a/utils-docs/docs/Utils/websocket.md b/docs/docs/Utils/websocket.md similarity index 100% rename from utils-docs/docs/Utils/websocket.md rename to docs/docs/Utils/websocket.md diff --git a/utils-docs/docs/overview.md b/docs/docs/overview.md similarity index 100% rename from utils-docs/docs/overview.md rename to docs/docs/overview.md diff --git a/utils-docs/docusaurus.config.ts b/docs/docusaurus.config.ts similarity index 100% rename from utils-docs/docusaurus.config.ts rename to docs/docusaurus.config.ts diff --git a/utils-docs/package-lock.json b/docs/package-lock.json similarity index 99% rename from utils-docs/package-lock.json rename to docs/package-lock.json index 80db27d..b48a49c 100644 --- a/utils-docs/package-lock.json +++ b/docs/package-lock.json @@ -1,11 +1,11 @@ { - "name": "utils-docs", + "name": "docs", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "utils-docs", + "name": "docs", "version": "0.0.1", "dependencies": { "@docusaurus/core": "3.2.1", diff --git a/utils-docs/package.json b/docs/package.json similarity index 98% rename from utils-docs/package.json rename to docs/package.json index a20d6c9..22f175a 100644 --- a/utils-docs/package.json +++ b/docs/package.json @@ -1,5 +1,5 @@ { - "name": "utils-docs", + "name": "docs", "version": "0.0.1", "private": true, "scripts": { diff --git a/utils-docs/sidebars.ts b/docs/sidebars.ts similarity index 100% rename from utils-docs/sidebars.ts rename to docs/sidebars.ts diff --git a/utils-docs/src/css/custom.css b/docs/src/css/custom.css similarity index 100% rename from utils-docs/src/css/custom.css rename to docs/src/css/custom.css diff --git a/utils-docs/src/pages/index.module.css b/docs/src/pages/index.module.css similarity index 100% rename from utils-docs/src/pages/index.module.css rename to docs/src/pages/index.module.css diff --git a/utils-docs/src/pages/index.tsx b/docs/src/pages/index.tsx similarity index 100% rename from utils-docs/src/pages/index.tsx rename to docs/src/pages/index.tsx diff --git a/utils-docs/static/img/logo.svg b/docs/static/img/logo.svg similarity index 100% rename from utils-docs/static/img/logo.svg rename to docs/static/img/logo.svg diff --git a/utils-docs/tsconfig.json b/docs/tsconfig.json similarity index 100% rename from utils-docs/tsconfig.json rename to docs/tsconfig.json diff --git a/vite.config.ts b/vite.config.ts index cdfae9c..3a815ce 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -16,7 +16,7 @@ export default defineConfig({ coverage: { reporter: "lcov", provider: "v8", - exclude: ["**/*.{yml}", "**/*.{config,utils}.*", ".eslintrc.cjs", "node_modules", "dist", "utils-docs"], + exclude: ["**/*.{yml}", "**/*.{config,utils}.*", ".eslintrc.cjs", "node_modules", "dist", "docs"], }, environment: "happy-dom", },