├── .commitlintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierrc ├── .releaserc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── example ├── .eslintrc.json ├── .gitignore ├── README.md ├── middleware.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── index.tsx │ └── with-query-string │ │ └── [[...queries]].tsx ├── public │ ├── favicon.ico │ └── vercel.svg ├── tsconfig.json └── yarn.lock ├── package.json ├── src ├── __tests__ │ ├── helper.spec.ts │ └── middleware.spec.ts ├── helper.ts ├── index.ts └── middleware.ts ├── tsconfig.json ├── vitest.config.ts └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/README.md -------------------------------------------------------------------------------- /example/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/README.md -------------------------------------------------------------------------------- /example/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/middleware.ts -------------------------------------------------------------------------------- /example/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/next-env.d.ts -------------------------------------------------------------------------------- /example/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/next.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/pages/_app.tsx -------------------------------------------------------------------------------- /example/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/pages/_document.tsx -------------------------------------------------------------------------------- /example/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/pages/index.tsx -------------------------------------------------------------------------------- /example/pages/with-query-string/[[...queries]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/pages/with-query-string/[[...queries]].tsx -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/public/vercel.svg -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/src/__tests__/helper.spec.ts -------------------------------------------------------------------------------- /src/__tests__/middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/src/__tests__/middleware.spec.ts -------------------------------------------------------------------------------- /src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/src/helper.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiji42/next-qs-props/HEAD/yarn.lock --------------------------------------------------------------------------------