Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V15: npm updates 2024-11-15 #17545

Open
wants to merge 27 commits into
base: v15/dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9a7be85
build(deps): bump storybook from 8.3.5 to 8.4.4
iOvergaard Nov 15, 2024
cf58f77
reenable public folder (with msw file) for storybook
iOvergaard Nov 15, 2024
640dfb9
build(deps-dev): bump vite from 5.4.6 to 5.4.11
iOvergaard Nov 15, 2024
eb7494b
build(deps-dev): bump babel and rollup
iOvergaard Nov 15, 2024
fe28c7c
build(deps-dev): bump typedoc from 0.26.5 to 0.26.11
iOvergaard Nov 15, 2024
2fa7b70
build(deps-dev): bump @hey-api/openapi-ts from 0.52.11 to 0.55.3
iOvergaard Nov 15, 2024
464b7fa
build(deps-dev): bump eslint from 9.7.0 to 9.14.0 including related deps
iOvergaard Nov 15, 2024
816778b
build(deps-dev): bump all @types packages
iOvergaard Nov 15, 2024
e953e38
build(deps-dev): bump lucide to 0.459.0 and simple-icons to 13.16.0
iOvergaard Nov 15, 2024
0e403e8
build(deps): bump marked from 14.1.0 to 15.0.0
iOvergaard Nov 15, 2024
048aef0
build(deps): bump monaco-editor from 0.50.0 to 0.52.0
iOvergaard Nov 15, 2024
7ee8a5a
build(deps): bump dumpurify from 3.1.6 to 3.2.0
iOvergaard Nov 15, 2024
8b039e8
build(deps): make changes based on the dompurify upgrade where types …
iOvergaard Nov 15, 2024
f58befc
build(deps): bump diff from 5.2.0 to 7.0.0
iOvergaard Nov 15, 2024
0f1df87
build(deps): bump element-internals-polyfill from 1.3.11 to 1.3.12
iOvergaard Nov 15, 2024
664eed5
build(deps): bump lit from 3.2.0 to 3.2.1
iOvergaard Nov 15, 2024
ae12323
build(deps-dev): bump globals from 15.8.0 to 15.12.0 (eslint dependency)
iOvergaard Nov 15, 2024
e992927
build(deps-dev): bump storybook dependencies
iOvergaard Nov 15, 2024
bc52fd1
build(deps-dev): bump @web/dev-server deps
iOvergaard Nov 15, 2024
9240442
build(deps-dev): bump typescript from 5.5.3 to 5.6.3
iOvergaard Nov 15, 2024
c558ec0
build(deps): bump uuid from 10.0.0 to 11.0.3 thereby eliminating the …
iOvergaard Nov 15, 2024
516cdad
build(deps): bump tinymce-i18n from 24.7.15 to 24.11.11
iOvergaard Nov 15, 2024
9da0bae
build(deps): bump all deps to latest and use backoffice global types …
iOvergaard Nov 15, 2024
4c11822
chore: change import path
iOvergaard Nov 15, 2024
c1e0149
build(deps-dev): bump rollup/plugin-commonjs to 26.0.3 for compatibil…
iOvergaard Nov 15, 2024
5c88e63
feat: replace outdated 'webworker-loader' with manual paths to monaco…
iOvergaard Nov 15, 2024
6511c62
Merge branch 'v15/dev' into v15/feature/npm-november-2024
iOvergaard Nov 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 13 additions & 9 deletions src/Umbraco.Web.UI.Client/devops/openapi-ts/openapi-ts.config.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
import { defineConfig } from '@hey-api/openapi-ts';

export default defineConfig({
client: 'fetch',
input: 'https://raw.githubusercontent.com/umbraco/Umbraco-CMS/v15/dev/src/Umbraco.Cms.Api.Management/OpenApi.json',
client: 'legacy/fetch',
debug: true,
input: '../Umbraco.Cms.Api.Management/OpenApi.json',
output: {
path: 'src/external/backend-api/src',
format: 'prettier',
lint: 'eslint',
},
schemas: false,
services: {
asClass: true,
},
types: {
enums: 'typescript',
},
plugins: [
{
name: '@hey-api/types',
enums: 'typescript'
},
{
name: '@hey-api/services',
asClass: true
}
]
});
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
import { defineConfig } from '@hey-api/openapi-ts';

import defaultConfig from './openapi-ts.config';

export default defineConfig({
client: 'fetch',
debug: true,
...defaultConfig,
input: 'http://localhost:11000/umbraco/swagger/management/swagger.json',
output: {
path: 'src/external/backend-api/src',
format: 'prettier',
lint: 'eslint',
},
schemas: false,
services: {
asClass: true,
},
types: {
enums: 'typescript',
},
});

This file was deleted.

Loading
Loading