Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nuxt3にする #550

Merged
merged 46 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
126ade6
reinstall nuxt
takanakahiko Oct 8, 2023
cb1d592
migrate from axios to fetch
takanakahiko Oct 8, 2023
c574148
migrate to @nuxt/proxy to routeRules
takanakahiko Oct 8, 2023
2f20a04
remove buefy from dependencies
takanakahiko Oct 8, 2023
33916b4
https://nuxt.com/docs/migration/configuration#migration
takanakahiko Oct 8, 2023
0545e7e
https://nuxt.com/docs/migration/configuration#esm-syntax
takanakahiko Oct 8, 2023
b600905
https://nuxt.com/docs/migration/plugins-and-middleware#plugins
takanakahiko Oct 8, 2023
dc13dc7
update codemirror version
takanakahiko Oct 8, 2023
d761947
https://github.com/nuxt/nuxt/issues/15640
takanakahiko Oct 8, 2023
a26932d
Stop loading post css
takanakahiko Oct 8, 2023
fd28633
migrate codemirror from v5 to v6
takanakahiko Oct 8, 2023
5d8b88a
https://github.com/nuxt/nuxt/issues/14952
takanakahiko Oct 8, 2023
42b2e18
https://nuxt.com/docs/migration/bundling#steps
takanakahiko Oct 8, 2023
cb453d0
https://nuxt.com/docs/migration/configuration#directory-changes
takanakahiko Oct 8, 2023
c1f59f7
npx nuxi prepare
takanakahiko Oct 8, 2023
0101f0b
update lint setting and lint fix
takanakahiko Oct 8, 2023
adb3fd5
remove deps
takanakahiko Oct 8, 2023
13cf1a8
remove deps
takanakahiko Oct 8, 2023
7284259
remove `--openssl-legacy-provider` options
takanakahiko Oct 8, 2023
1230490
https://nuxt.com/docs/migration/server#steps
takanakahiko Oct 8, 2023
b61146d
install express
takanakahiko Oct 8, 2023
1b24687
remove nodemon
takanakahiko Oct 8, 2023
9a4aca6
install @types/express
takanakahiko Oct 8, 2023
24f5586
https://nuxt.com/docs/migration/meta#meta-tags
takanakahiko Oct 8, 2023
2d997bd
config simplified
takanakahiko Oct 8, 2023
ddb9ef7
https://nuxt.com/docs/migration/pages-and-layouts#migration-1
takanakahiko Oct 8, 2023
d856cc8
https://nuxt.com/docs/migration/pages-and-layouts#example-nested-rout…
takanakahiko Oct 8, 2023
9711a9b
https://nuxt.com/docs/migration/auto-imports#auto-imports
takanakahiko Oct 8, 2023
bfb12f7
https://nuxt.com/docs/api/utils/define-nuxt-component#definenuxtcompo…
takanakahiko Oct 8, 2023
d3b48eb
https://nuxt.com/docs/api/composables/use-route#useroute
takanakahiko Oct 8, 2023
a11fdca
fix typos of plugins/nuxt-codemirror-plugin.ts
takanakahiko Oct 8, 2023
2791b98
reproduce the Style provided by buefy
takanakahiko Oct 8, 2023
0fd51d5
repair gist components as much as possible
takanakahiko Oct 8, 2023
51c6a4e
https://nuxt.com/docs/migration/pages-and-layouts#dynamic-routes
takanakahiko Oct 9, 2023
7d1a364
SparqlResponseTable in vue3 format
takanakahiko Oct 9, 2023
a9537e9
https://nuxt.com/docs/migration/component-options#using-composables
takanakahiko Oct 9, 2023
9b6fa75
https://nuxt.com/docs/migration/pages-and-layouts#migration-1
takanakahiko Oct 9, 2023
267f8d9
https://github.com/nuxt/framework/releases/tag/v3.0.0-rc.12#:~:text=m…
takanakahiko Oct 9, 2023
53aa972
Get sparql results in json
takanakahiko Oct 9, 2023
56b351e
remove babel-eslint
takanakahiko Oct 9, 2023
b355444
https://nuxt.com/docs/getting-started/deployment#entry-point
takanakahiko Oct 9, 2023
f3dcffe
lint
takanakahiko Oct 10, 2023
740f8cb
enable typecheck
takanakahiko Oct 10, 2023
cdf26b8
use head of NuxtConfig
takanakahiko Oct 10, 2023
89d9392
https://github.com/nuxt/starter/blob/v3/.gitignore
takanakahiko Oct 10, 2023
c6781ba
remove useHead of app.vue
takanakahiko Oct 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions web/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports = {
extends: [
'@nuxtjs/eslint-config-typescript'
]
root: true,
extends: ['@nuxt/eslint-config', '@nuxtjs/eslint-config-typescript']
}
97 changes: 17 additions & 80 deletions web/.gitignore
Original file line number Diff line number Diff line change
@@ -1,87 +1,24 @@
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
# Nuxt dev/build outputs
.output
.data
.nuxt

# Nuxt generate
.nitro
.cache
dist

# vuepress build output
.vuepress/dist
# Node dependencies
node_modules

# Serverless directories
.serverless
# Logs
logs
*.log

# IDE
# Misc
.DS_Store
.fleet
.idea

# Service worker
sw.*


static/prism-schema.ttl
# Local env files
.env
.env.*
!.env.example
2 changes: 1 addition & 1 deletion web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ ENV NODE_ENV=production
ENV HOST 0.0.0.0
ENV PORT 8080

CMD ["npm", "start"]
CMD ["node", ".output/server/index.mjs"]
90 changes: 0 additions & 90 deletions web/api/middleware/sparql.ts

This file was deleted.

20 changes: 0 additions & 20 deletions web/api/middleware/util.ts

This file was deleted.

26 changes: 0 additions & 26 deletions web/api/routes/character.ts

This file was deleted.

28 changes: 0 additions & 28 deletions web/api/routes/episode.ts

This file was deleted.

18 changes: 0 additions & 18 deletions web/api/routes/index.ts

This file was deleted.

26 changes: 0 additions & 26 deletions web/api/routes/live.ts

This file was deleted.

28 changes: 0 additions & 28 deletions web/api/routes/series.ts

This file was deleted.

26 changes: 0 additions & 26 deletions web/api/routes/shop.ts

This file was deleted.

Loading
Loading