Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Jan 9, 2024
1 parent 1ac4cc9 commit f0fcf2f
Show file tree
Hide file tree
Showing 3 changed files with 692 additions and 566 deletions.
19 changes: 12 additions & 7 deletions ace.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,19 @@
| Since, we cannot run TypeScript source code using "node" binary, we need
| a JavaScript entrypoint to run ace commands.
|
| This file runs "bin/console.ts" file as a child process and uses "ts-node/esm"
| loader to run TypeScript code.
|
| Executing this file is same as running the following command.
| "node --loader=ts-node/esm bin/console.js"
| This file registers the "ts-node/esm" hook with the Node.js module system
| and then imports the "bin/console.ts" file.
|
*/

import { aceShell } from '@adonisjs/core/ace/shell'
/**
* Register hook to process TypeScript files using ts-node
*/
import { register } from 'node:module'

register('ts-node/esm', import.meta.url)

await aceShell(new URL('./', import.meta.url)).handle(process.argv.splice(2))
/**
* Import ace console entrypoint
*/
await import('./bin/console.js')
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,69 +35,69 @@
},
"dependencies": {
"@adonisjs/cache": "1.0.0-1",
"@adonisjs/core": "6.1.5-38",
"@adonisjs/core": "6.2.0",
"@adonisjs/inertia": "1.0.0-5",
"@adonisjs/lucid": "19.0.0-8",
"@adonisjs/session": "7.0.0-15",
"@adonisjs/shield": "8.0.0-10",
"@adonisjs/static": "^1.0.4",
"@adonisjs/vite": "2.0.2-0",
"@headlessui/vue": "^1.7.16",
"@adonisjs/session": "7.0.0",
"@adonisjs/shield": "8.0.1",
"@adonisjs/static": "^1.1.1",
"@adonisjs/vite": "2.0.2",
"@headlessui/vue": "^1.7.17",
"@inertiajs/vue3": "^1.0.14",
"@poppinss/utils": "^6.7.0",
"@sindresorhus/slugify": "^2.2.1",
"@vinejs/vine": "^1.7.0",
"@vueuse/core": "^10.7.1",
"cron": "^3.1.6",
"edge.js": "^6.0.0",
"floating-vue": "2.0.0-beta.24",
"edge.js": "^6.0.1",
"floating-vue": "5.0.2",
"github-markdown-css": "^5.5.0",
"globby": "^14.0.0",
"gsap": "^3.12.4",
"highlight.js": "^11.9.0",
"js-yaml": "^4.1.0",
"luxon": "^3.4.4",
"markdown-it": "^13.0.2",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"millify": "^6.1.0",
"p-limit": "^4.0.0",
"reflect-metadata": "^0.1.14",
"reflect-metadata": "^0.2.1",
"sanitize-html": "^2.11.0",
"sqlite3": "^5.1.6",
"vue": "^3.4.0"
"sqlite3": "^5.1.7",
"vue": "^3.4.7"
},
"devDependencies": {
"@adonisjs/assembler": "7.0.0-1",
"@adonisjs/assembler": "7.0.0",
"@adonisjs/tsconfig": "^1.2.1",
"@faker-js/faker": "^8.3.1",
"@iconify/json": "^2.2.163",
"@iconify/json": "^2.2.166",
"@iconify/utils": "^2.1.14",
"@japa/api-client": "^2.0.2",
"@japa/assert": "^2.1.0",
"@japa/browser-client": "^2.0.2",
"@japa/file-system": "^2.1.1",
"@japa/plugin-adonisjs": "^2.0.2",
"@japa/plugin-adonisjs": "^2.0.3",
"@japa/runner": "^3.1.1",
"@julr/tooling-configs": "2.0.0",
"@julr/tooling-configs": "2.1.0",
"@julr/unocss-preset-forms": "^0.1.0",
"@swc/core": "^1.3.101",
"@swc/core": "^1.3.102",
"@types/js-yaml": "^4.0.9",
"@types/luxon": "^3.3.7",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.10.5",
"@types/node": "^20.10.7",
"@types/sanitize-html": "^2.9.5",
"@unocss/reset": "^0.57.7",
"@vitejs/plugin-vue": "^4.6.1",
"@unocss/reset": "^0.58.3",
"@vitejs/plugin-vue": "^5.0.2",
"eslint": "^8.56.0",
"pino-pretty": "^10.3.1",
"playwright": "^1.40.1",
"postcss-nested": "^6.0.1",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.2.2",
"unocss": "^0.58.2",
"unocss": "^0.58.3",
"unocss-preset-radix": "^2.5.5",
"vite": "^5.0.10",
"vite": "^5.0.11",
"vue-tsc": "^1.8.27"
},
"prettier": "@julr/tooling-configs/prettier"
Expand Down
Loading

0 comments on commit f0fcf2f

Please sign in to comment.