Skip to content

Commit

Permalink
fix: update @tsed/logger to v7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Nov 30, 2024
1 parent 9e01ad5 commit 8237615
Show file tree
Hide file tree
Showing 31 changed files with 329 additions and 399 deletions.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ contact_links:
url: https://github.com/tsedio/tsed/discussions
about: Open a discussion that can be followed by the whole community on Github!
- name: 💬 Community channel (Slack)
url: https://api.tsed.io/rest/slack/tsedio/tsed
url: https://slack.tsed.io
about: Join our slack workspace to discuss directly wiht the team!

12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ jobs:
package.json
packages/*/package.json
- name: "Trigger Website workflow"
run: |
curl -X POST https://api.github.com/repos/tsedio/tsed-cli/actions/workflows/website.yml/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-H 'Authorization: Bearer ${{secrets.GH_TOKEN}}' \
--data '{"ref": "production"}'
# - name: "Trigger Website workflow"
# run: |
# curl -X POST https://api.github.com/repos/tsedio/tsed-cli/actions/workflows/website.yml/dispatches \
# -H 'Accept: application/vnd.github.everest-preview+json' \
# -H 'Authorization: Bearer ${{secrets.GH_TOKEN}}' \
# --data '{"ref": "production"}'
16 changes: 6 additions & 10 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,21 @@ permissions:
jobs:
publish-docs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
node-version: 20.x
- name: Install dependencies 🚀
run: yarn install --immutable --network-timeout 500000
- name: Build pages
env:
CI: true
run: yarn docs:build
run: yarn docs:build 📝
- name: Publish pages
env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn docs:publish

2 changes: 1 addition & 1 deletion docs/.vuepress/components/SupportOptions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<Button
class="typeform-share"
data-mode="popup"
href="https://tsed.io/contact.html">
href="https://tsed.dev/contact.html">
<BxIcon name="bx-message-alt-dots" class="mr-1" />
Contact us directly
</Button>
Expand Down
36 changes: 18 additions & 18 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const team = require("../../team.json");
const api = require("./public/api.json");
const {version} = require("../../package.json");

const url = "https://cli.tsed.io";
const url = "https://cli.tsed.dev";
const title = "Ts.ED CLI - CLI to bootstrap your Ts.ED project";

module.exports = {
Expand All @@ -24,7 +24,7 @@ module.exports = {
["meta", {property: "og:site_name", content: title}],
["meta", {property: "og:title", content: title}],
["meta", {property: "og:description", content: "A Node.js CLI to bootstrap and manage a Ts.ED project."}],
["meta", {property: "og:image", content: "https://tsed.io/tsed-og.png"}],
["meta", {property: "og:image", content: "https://tsed.dev/tsed-og.png"}],
["meta", {property: "og:image:width", content: "1024"}],
["meta", {property: "og:image:height", content: "1024"}],
["meta", {name: "twitter:title", content: title}],
Expand All @@ -49,11 +49,11 @@ module.exports = {
end: new Date().getFullYear()
},
repo: "tsedio/tsed-cli",
githubProxyUrl: "https://api.tsed.io/rest/github/tsedio/tsed-cli",
openCollective: "https://api.tsed.io/rest/opencollective",
slackUrl: "https://api.tsed.io/rest/slack/tsedio/tsed",
githubProxyUrl: "https://api.tsed.dev/rest/github/tsedio/tsed-cli",
openCollective: "https://api.tsed.dev/rest/opencollective",
slackUrl: "https://slack.tsed.io",
stackoverflowUrl: "https://stackoverflow.com/search?q=tsed",
sponsorUrl: "https://tsed.io/support.html",
sponsorUrl: "https://tsed.dev/support.html",
twitterUrl: "https://twitter.com/TsED_io",
editLinks: true,
docsDir: "docs",
Expand Down Expand Up @@ -87,11 +87,11 @@ module.exports = {
{
title: `Warehouse | ${title}`,
text: "Warehouse",
link: "https://tsed.io/plugins/",
link: "https://tsed.dev/plugins/",
items: [
{
text: "Explore plugins",
link: "https://tsed.io/plugins/"
link: "https://tsed.dev/plugins/"
},
{
text: "Eslint",
Expand Down Expand Up @@ -133,23 +133,23 @@ module.exports = {
items: [
{
text: "Ts.ED",
link: "http://tsed.io"
link: "http://tsed.dev"
},
{
text: "Ts.ED Logger",
link: "http://logger.tsed.io"
link: "http://logger.tsed.dev"
},
{
text: "Team",
link: "https://tsed.io/team.html"
link: "https://tsed.dev/team.html"
},
{
text: "Contributes",
link: "/contributing.md"
},
{
text: "Support",
link: "https://tsed.io/support.html"
link: "https://tsed.dev/support.html"
},
{
text: "License",
Expand All @@ -175,7 +175,7 @@ module.exports = {
},
{
title: "Team", // required
path: "https://tsed.io/team.html",
path: "https://tsed.dev/team.html",
collapsable: true // optional, defaults to true
},
{
Expand All @@ -185,7 +185,7 @@ module.exports = {
},
{
title: "Support us", // required
link: "https://tsed.io/support.html",
link: "https://tsed.dev/support.html",
collapsable: true // optional, defaults to true
}
],
Expand All @@ -197,7 +197,7 @@ module.exports = {
items: [
{
label: "Our team",
url: "https://tsed.io/team.html"
url: "https://tsed.dev/team.html"
},
{
label: "Contact us",
Expand All @@ -210,11 +210,11 @@ module.exports = {
items: [
{
label: "Resources",
url: "https://tsed.io/tutorials/index.html"
url: "https://tsed.dev/tutorials/index.html"
},
{
label: "Chat with us",
url: "https://api.tsed.io/rest/slack/tsedio/tsed"
url: "https://slack.tsed.io"
},
{
label: "Contribution guide",
Expand All @@ -231,7 +231,7 @@ module.exports = {
},
{
label: "Sponsoring & donations",
url: "https://tsed.io/support.html"
url: "https://tsed.dev/support.html"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"bugs": {
"url": "https://github.com/tsedio/tsed/issues"
},
"homepage": "http://tsed.io/",
"homepage": "http://tsed.dev/",
"dependencies": {
"cross-env": "7.0.3"
},
Expand Down
138 changes: 69 additions & 69 deletions docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
layout: Home
sidebar: false
meta:
- name: keywords
content: Ts.ED cli nodejs express typescript javascript es6 decorators
- name: keywords
content: Ts.ED cli nodejs express typescript javascript es6 decorators
gettingStartedText: Getting started
gettingStartedUrl: /getting-started/index.html
messengerText: Discussions
messengerIcon: bxl-slack
messengerUrl: https://api.tsed.io/rest/slack/tsedio/tsed
messengerUrl: https://slack.tsed.io
sponsorText: Sponsor @romakita
sponsorUrl: https://github.com/sponsors/Romakita
features:
- title: tsed init
details: The Ts.ED CLI makes it easy to create an application that already works, right out of the box. It already follows our best practices!
- title: tsed generate
details: Generate provider, controllers, services and pipes with a simple command. The CLI will also create simple test shells for all of these.
- title: tsed add
details: Install a CLI plugins to extend the CLI capabilities. Out-of-the-box support tslint, prettier, vitest, mocha, jest, passport, etc...
- title: tsed init
details: The Ts.ED CLI makes it easy to create an application that already works, right out of the box. It already follows our best practices!
- title: tsed generate
details: Generate provider, controllers, services and pipes with a simple command. The CLI will also create simple test shells for all of these.
- title: tsed add
details: Install a CLI plugins to extend the CLI capabilities. Out-of-the-box support tslint, prettier, vitest, mocha, jest, passport, etc...
contributors:
classes: bg-gray-lighter mb-10
title: Our awesome <b>contributors</b>
Expand All @@ -28,7 +28,7 @@ contributors:
width: 45
bgColor: white
support:
url: https://tsed.io/contact.html
url: https://tsed.dev/contact.html
backers:
cta:
label: Become backer
Expand Down Expand Up @@ -62,66 +62,66 @@ sponsors:
items:
- title: schnell.digital
href: https://schnell.digital/
src: https://tsed.io/partners/schnell.svg
src: https://tsed.dev/partners/schnell.svg
showContent: false
frameworks:
- title: TypeScript
href: https://www.typescriptlang.org/
src: /typescript.png
- title: Express.js
href: https://expressjs.com/
src: /expressjs.svg
- title: Koa.js
href: https://koajs.com/
src: /koa.svg
- title: Vitest
href: https://vitest.dev/
src: /vitest.png
- title: Jest
href: https://jestjs.io/
src: /jest.svg
- title: Mocha
href: https://mochajs.org/
src: /mochajs.svg
- title: ESLint
href: https://eslint.org/
src: /eslint.svg
- title: Babel
href: https://babeljs.io/
src: /babel.svg
- title: Webpack
href: https://webpack.js.org/
src: /webpack.svg
- title: AJV
href: /tutorials/ajv.html
src: https://ajv.js.org/img/ajv.svg
- title: Swagger
href: https://tsed.io/tutorials/swagger.html
src: /swagger.svg
- title: Passport
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-passport
src: /passportjs.png
- title: Prisma
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-prisma
src: https://tsed.io/prisma-3.svg
- title: Mongoose
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-mongoose
src: /mongoose.png
- title: TypeORM
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-typeorm
src: /typeorm.png
- title: TypeGraphQL
href: https://tsed.io/tutorials/graphql.html
src: /typegraphql.png
- title: Socket.io
href: https://tsed.io/tutorials/socketio.html
src: /socketio.svg
- title: AWS
href: https://tsed.io/tutorials/aws.html
src: /aws.png
- title: Handlebars
href: https://handlebarsjs.com/
src: https://handlebarsjs.com/images/handlebars_logo.png
- title: TypeScript
href: https://www.typescriptlang.org/
src: /typescript.png
- title: Express.js
href: https://expressjs.com/
src: /expressjs.svg
- title: Koa.js
href: https://koajs.com/
src: /koa.svg
- title: Vitest
href: https://vitest.dev/
src: /vitest.png
- title: Jest
href: https://jestjs.io/
src: /jest.svg
- title: Mocha
href: https://mochajs.org/
src: /mochajs.svg
- title: ESLint
href: https://eslint.org/
src: /eslint.svg
- title: Babel
href: https://babeljs.io/
src: /babel.svg
- title: Webpack
href: https://webpack.js.org/
src: /webpack.svg
- title: AJV
href: /tutorials/ajv.html
src: https://ajv.js.org/img/ajv.svg
- title: Swagger
href: https://tsed.dev/tutorials/swagger.html
src: /swagger.svg
- title: Passport
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-passport
src: /passportjs.png
- title: Prisma
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-prisma
src: https://tsed.dev/prisma-3.svg
- title: Mongoose
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-mongoose
src: /mongoose.png
- title: TypeORM
href: https://github.com/tsedio/tsed-cli/tree/master/packages/cli-plugin-typeorm
src: /typeorm.png
- title: TypeGraphQL
href: https://tsed.dev/tutorials/graphql.html
src: /typegraphql.png
- title: Socket.io
href: https://tsed.dev/tutorials/socketio.html
src: /socketio.svg
- title: AWS
href: https://tsed.dev/tutorials/aws.html
src: /aws.png
- title: Handlebars
href: https://handlebarsjs.com/
src: https://handlebarsjs.com/images/handlebars_logo.png
---

::: slot hero-brand
Expand All @@ -145,7 +145,7 @@ Why <span class="text-blue">Ts</span>.ED?
Ts.ED is a Node.js Framework on top of Express/Koa.js. Written in Typescript, it helps you build your server-side application easily and quickly.
If you want to start a complete out-of-the-box project or fully customize it yourself, Ts.ED will guide you there !

<Button href="https://tsed.io" class="mt-8" rounded="medium">See more on Ts.ED</Button>
<Button href="https://tsed.dev" class="mt-8" rounded="medium">See more on Ts.ED</Button>
:::

<HomeBody />
Loading

0 comments on commit 8237615

Please sign in to comment.