Skip to content

Commit

Permalink
Merge branch 'next' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
ST-DDT authored Jan 18, 2023
2 parents 3219bf2 + 0ac9989 commit 652acd0
Show file tree
Hide file tree
Showing 8 changed files with 355 additions and 81 deletions.
36 changes: 36 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "FakerJs",
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-18",

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [5173],
"portsAttributes": {
"5173": {
"label": "Docs"
}
},

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "npm install -g pnpm && pnpm install",

// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"redhat.vscode-yaml",
"github.vscode-pull-request-github"
]
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ coverage

# Dependency directories
node_modules/
.pnpm-store/

# TypeScript cache
*.tsbuildinfo
Expand Down
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"redhat.vscode-yaml"
"redhat.vscode-yaml",
"github.vscode-pull-request-github"
]
}
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,26 +95,26 @@
"@typescript-eslint/parser": "~5.48.1",
"@vitest/coverage-c8": "~0.27.1",
"@vitest/ui": "~0.27.1",
"@vueuse/core": "~9.10.0",
"@vueuse/core": "~9.11.0",
"c8": "~7.12.0",
"conventional-changelog-cli": "~2.2.2",
"cypress": "~12.3.0",
"esbuild": "~0.16.16",
"eslint": "~8.31.0",
"esbuild": "~0.17.2",
"eslint": "~8.32.0",
"eslint-config-prettier": "~8.6.0",
"eslint-define-config": "~1.14.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-jsdoc": "~39.6.4",
"eslint-plugin-prettier": "~4.2.1",
"glob": "~8.0.3",
"glob": "~8.1.0",
"mime-db": "~1.52.0",
"npm-run-all": "~4.1.5",
"picocolors": "~1.0.0",
"prettier": "2.8.1",
"prettier-plugin-organize-imports": "~3.2.1",
"prettier": "2.8.3",
"prettier-plugin-organize-imports": "~3.2.2",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"rimraf": "~3.0.2",
"rimraf": "~4.1.0",
"sanitize-html": "~2.8.1",
"semver": "~7.3.8",
"standard-version": "~9.5.0",
Expand Down
Loading

0 comments on commit 652acd0

Please sign in to comment.