├── .browserslistrc ├── .circleci └── config.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── blank.yml ├── .gitignore ├── .markdownlint.ignore ├── .markdownlint.json ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── _config.yml ├── babel.config.js ├── commitlint.config.js ├── docs ├── .htaccess ├── .nojekyll ├── 200.html ├── _nuxt │ ├── 28782b0.modern.js │ ├── 2a9cc8a.modern.js │ ├── 30dba99.js │ ├── 36811e5.js │ ├── 7cbfe21.js │ ├── 7e7af2a.js │ ├── 9d51883.modern.js │ ├── LICENSES │ ├── a590e8b.js │ ├── b9c9d02.js │ ├── e528fe0.modern.js │ ├── e8f452d.modern.js │ ├── f294a27.modern.js │ └── static │ │ └── 1611241672 │ │ ├── manifest.js │ │ ├── payload.js │ │ └── state.js ├── favicon.ico ├── humans.txt ├── icon.png ├── index.html └── robots.txt ├── example ├── graphql │ ├── graphql.gql │ ├── graphql.json │ ├── index.js │ ├── locations.gql │ └── locations.json ├── nuxt.config.js ├── pages │ ├── index.css │ └── index.vue ├── static │ ├── .htaccess │ ├── favicon.ico │ ├── humans.txt │ ├── icon.png │ └── robots.txt └── store │ ├── build-data.js │ ├── comments.js │ ├── graphql.js │ ├── index.js │ ├── locations.js │ └── posts.js ├── husky.config.js ├── jest.config.js ├── lib ├── logger.js └── module.js ├── package.json ├── renovate.json ├── test └── module.test.js ├── vue.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # Common 2 | node_modules 3 | dist 4 | .nuxt 5 | coverage 6 | 7 | docs 8 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/blank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.github/workflows/blank.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.markdownlint.ignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false 3 | } 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/TODO.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/_config.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/.htaccess -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/200.html -------------------------------------------------------------------------------- /docs/_nuxt/28782b0.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/28782b0.modern.js -------------------------------------------------------------------------------- /docs/_nuxt/2a9cc8a.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/2a9cc8a.modern.js -------------------------------------------------------------------------------- /docs/_nuxt/30dba99.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/30dba99.js -------------------------------------------------------------------------------- /docs/_nuxt/36811e5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/36811e5.js -------------------------------------------------------------------------------- /docs/_nuxt/7cbfe21.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/7cbfe21.js -------------------------------------------------------------------------------- /docs/_nuxt/7e7af2a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/7e7af2a.js -------------------------------------------------------------------------------- /docs/_nuxt/9d51883.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/9d51883.modern.js -------------------------------------------------------------------------------- /docs/_nuxt/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/LICENSES -------------------------------------------------------------------------------- /docs/_nuxt/a590e8b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/a590e8b.js -------------------------------------------------------------------------------- /docs/_nuxt/b9c9d02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/b9c9d02.js -------------------------------------------------------------------------------- /docs/_nuxt/e528fe0.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/e528fe0.modern.js -------------------------------------------------------------------------------- /docs/_nuxt/e8f452d.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/e8f452d.modern.js -------------------------------------------------------------------------------- /docs/_nuxt/f294a27.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/f294a27.modern.js -------------------------------------------------------------------------------- /docs/_nuxt/static/1611241672/manifest.js: -------------------------------------------------------------------------------- 1 | __NUXT_JSONP__("manifest.js", {routes:["\u002F"]}) -------------------------------------------------------------------------------- /docs/_nuxt/static/1611241672/payload.js: -------------------------------------------------------------------------------- 1 | __NUXT_JSONP__("/", {data:[{}],fetch:[],mutations:[]}); -------------------------------------------------------------------------------- /docs/_nuxt/static/1611241672/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/_nuxt/static/1611241672/state.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/humans.txt -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /example/graphql/graphql.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/graphql/graphql.gql -------------------------------------------------------------------------------- /example/graphql/graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/graphql/graphql.json -------------------------------------------------------------------------------- /example/graphql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/graphql/index.js -------------------------------------------------------------------------------- /example/graphql/locations.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/graphql/locations.gql -------------------------------------------------------------------------------- /example/graphql/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/graphql/locations.json -------------------------------------------------------------------------------- /example/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/nuxt.config.js -------------------------------------------------------------------------------- /example/pages/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/pages/index.css -------------------------------------------------------------------------------- /example/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/pages/index.vue -------------------------------------------------------------------------------- /example/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/static/.htaccess -------------------------------------------------------------------------------- /example/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/static/favicon.ico -------------------------------------------------------------------------------- /example/static/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/static/humans.txt -------------------------------------------------------------------------------- /example/static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/static/icon.png -------------------------------------------------------------------------------- /example/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /example/store/build-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/store/build-data.js -------------------------------------------------------------------------------- /example/store/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/store/comments.js -------------------------------------------------------------------------------- /example/store/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/store/graphql.js -------------------------------------------------------------------------------- /example/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/store/index.js -------------------------------------------------------------------------------- /example/store/locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/store/locations.js -------------------------------------------------------------------------------- /example/store/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/example/store/posts.js -------------------------------------------------------------------------------- /husky.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/husky.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/lib/module.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/renovate.json -------------------------------------------------------------------------------- /test/module.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/test/module.test.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuXDAmore/nuxt-apis-to-file/HEAD/yarn.lock --------------------------------------------------------------------------------