Skip to content

Commit 80279d9

Browse files
authored
Merge pull request #637 from umbraco/release/1.5.0
Release/1.5.0
2 parents 0943742 + 4ae6e8f commit 80279d9

File tree

367 files changed

+18711
-13054
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

367 files changed

+18711
-13054
lines changed

.devcontainer/devcontainer.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
3+
{
4+
"name": "Node.js & TypeScript",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",
7+
8+
// Features to add to the dev container. More info: https://containers.dev/features.
9+
"features": {},
10+
11+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
12+
// "forwardPorts": [],
13+
14+
// Use 'postCreateCommand' to run commands after the container is created.
15+
"postCreateCommand": "npm install",
16+
"customizations": {
17+
"vscode": {
18+
"extensions": [
19+
"esbenp.prettier-vscode",
20+
"streetsidesoftware.code-spell-checker"
21+
]
22+
}
23+
},
24+
"portsAttributes": {
25+
"6006": {
26+
"label": "Storybook",
27+
"onAutoForward": "notify"
28+
}
29+
}
30+
31+
// Configure tool-specific properties.
32+
// "customizations": {},
33+
34+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
35+
// "remoteUser": "root"
36+
}

.eslintrc.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
ignorePatterns: ['vite.*.js', 'packages/**/*.js', 'src/**/*'],
33
root: true,
4-
plugins: ['html', 'import'],
4+
plugins: ['html', 'import', 'eslint-plugin-local-rules'],
55
overrides: [
66
{
77
files: ['*.ts', '*.tsx'],
@@ -25,6 +25,8 @@ module.exports = {
2525
'@typescript-eslint/ban-types': 'off', //TODO: Remove (maybe)
2626
'lit/no-useless-template-literals': 'error',
2727
'lit/prefer-nothing': 'error',
28+
'local-rules/uui-class-prefix': 'warn',
29+
'local-rules/prefer-static-styles-last': 'warn',
2830
},
2931
parserOptions: {
3032
project: './tsconfig.json',

.github/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ changelog:
2626
- title: 🏠 Internal
2727
labels:
2828
- internal
29+
- title: 📦 Dependencies
30+
labels:
2931
- dependencies
32+
- title: 📄 Documentation
33+
labels:
34+
- documentation
3035
- title: Other Changes
3136
labels:
3237
- '*'

.github/workflows/azure-static-web-apps-delightful-beach-055ecb503.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
name: Build and Deploy Job
2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
with:
3232
submodules: true
3333

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
# Job steps
4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
with:
4949
# pulls all commits (needed for chromatic to find baselines)
5050
fetch-depth: '0'

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: 'Dependency Review'
2020
uses: actions/dependency-review-action@v3

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Steps represent a sequence of tasks that will be executed as part of the job
2828
steps:
2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
with:
3232
# pulls all commits (needed for lerna / semantic release to correctly version)
3333
fetch-depth: '0'

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
node-version: [18.x]
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Use Node.js ${{ matrix.node-version }}
2828
uses: actions/setup-node@v3
2929
with:
@@ -42,7 +42,7 @@ jobs:
4242
node-version: [18.x]
4343

4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
- name: Use Node.js ${{ matrix.node-version }}
4747
uses: actions/setup-node@v3
4848
with:

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"cSpell.words": ["combobox", "Umbraco"]
2+
"cSpell.words": ["combobox", "cssprop", "noopener", "noreferrer", "Umbraco"],
3+
"npm.enableRunFromFolder": true
34
}

0 commit comments

Comments
 (0)