Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
42 changes: 42 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// 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": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",

// 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": [],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "yarn install",

// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
//"settings": {
//},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"GitHub.vscode-pull-request-github",
"Intility.vscode-backstage",
"dbaeumer.vscode-eslint",
"znck.grammarly",
"DavidAnson.vscode-markdownlint",
"eamodio.gitlens",
"ms-azuretools.vscode-docker",
"donjayamanne.githistory",
"ZainChen.json"
]
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/setup-node@v4.0.1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn install --immutable

- name: validate config
run: yarn backstage-cli config:check --lax
Expand Down
102 changes: 51 additions & 51 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:js-lib",
":rebaseStalePrs",
":automergePatch",
"docker:disable"
],
"assignees": [
"jvilimek"
],
"labels": [
"dependencies"
],
"stabilityDays": 3,
"internalChecksFilter": "strict",
"packageRules": [
{
"paths": [
"packages/app/package.json"
],
"addLabels": [
"packages"
]
},
{
"paths": [
"packages/backend/package.json"
],
"addLabels": [
"packages"
]
},
{
"description": "In case of eslint package update change the label to [linting]",
"matchPackagePatterns": [
"eslint"
],
"labels": [
"linting"
]
},
{
"description": "In case we have optional dependencies change add [optional] label",
"matchDepTypes": [
"optionalDependencies"
],
"addLabels": [
"optional"
]
}
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:js-lib",
":rebaseStalePrs",
":automergePatch",
"docker:disable"
],
"assignees": [
"jvilimek"
],
"labels": [
"dependencies"
],
"stabilityDays": 3,
"internalChecksFilter": "strict",
"packageRules": [{
"matchFileNames": [
"packages/**"
],
"addLabels": [
"packages"
]
},
{
"description": "In case of eslint package update change the label to [linting]",
"matchPackagePatterns": [
"eslint"
],
"labels": [
"linting"
]
},
{
"description": "In case we have optional dependencies change add [optional] label",
"matchDepTypes": [
"optionalDependencies"
],
"addLabels": [
"optional"
]
},
{
"matchFileNames": [
"plugins/**"
],
"addLabels": [
"plugins"
],
"rangeStrategy": "replace"
}
]
}