Skip to content

Commit 51f0e64

Browse files
committed
fix: update to latest au2
1 parent be93f21 commit 51f0e64

File tree

6 files changed

+29
-26
lines changed

6 files changed

+29
-26
lines changed

client/gulpfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,10 @@ const drWorker = dumber({
132132
DUMBER_MODULE_LOADER_DIST
133133
],
134134
deps: [
135-
{name: 'punycode', main: 'punycode.js', lazyMain: true}
135+
{name: 'punycode', main: 'punycode.js', lazyMain: true},
136+
// Dumber has not supported package.json exports yet
137+
{name: 'locate-character', main: 'src/index.js'},
138+
{name: 'code-red', main: 'src/index.js'},
136139
],
137140
append: [
138141
isTest ?

client/package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,52 +5,52 @@
55
"private": true,
66
"license": "MIT",
77
"devDependencies": {
8-
"@aurelia/plugin-conventions": "^2.0.0-beta.7",
9-
"@typescript-eslint/eslint-plugin": "^5.60.0",
10-
"@typescript-eslint/parser": "^5.60.0",
11-
"aurelia-bootstrapper": "^2.4.0",
8+
"@aurelia/plugin-conventions": "^2.0.0-beta.16",
9+
"@typescript-eslint/eslint-plugin": "^7.8.0",
10+
"@typescript-eslint/parser": "^7.8.0",
11+
"aurelia-bootstrapper": "^2.4.1",
1212
"aurelia-combo": "^1.1.4",
13-
"aurelia-deps-finder": "^2.1.6",
13+
"aurelia-deps-finder": "^2.1.7",
1414
"aurelia-dialog-lite": "^1.0.1",
1515
"aurelia-testing": "^1.1.0",
16-
"autoprefixer": "^10.4.14",
16+
"autoprefixer": "^10.4.19",
1717
"base64-arraybuffer": "^1.0.2",
1818
"bcx-aurelia-dnd": "^1.5.2",
1919
"bcx-aurelia-reorderable-repeat": "^1.5.1",
2020
"bcx-validation": "^2.1.0",
21-
"browser-do": "^4.1.0",
21+
"browser-do": "^5.0.0",
2222
"clipboard": "^2.0.11",
2323
"codemirror": "^5.65.7",
2424
"cross-env": "^7.0.3",
25-
"eslint": "^8.43.0",
25+
"eslint": "^8.56.0",
2626
"esm": "^3.2.25",
2727
"graphlib": "^2.1.8",
2828
"gulp": "^4.0.2",
2929
"gulp-dart-sass": "^1.1.0",
3030
"gulp-dumber": "^2.0.0",
3131
"gulp-if": "^3.0.0",
3232
"gulp-plumber": "^1.2.1",
33-
"gulp-postcss": "^9.0.1",
34-
"gulp-swc": "^1.3.2",
33+
"gulp-postcss": "^10.0.0",
34+
"gulp-swc": "^2.1.0",
3535
"gulp-terser": "^2.1.0",
3636
"htmlhint": "^1.1.4",
3737
"is-utf8": "^0.2.1",
38-
"less": "^4.1.3",
38+
"less": "^4.2.0",
3939
"localforage": "^1.10.0",
4040
"lodash": "^4.17.21",
4141
"merge2": "^1.4.1",
42-
"moment": "^2.29.4",
42+
"moment": "^2.30.1",
4343
"nyc": "^15.1.0",
44-
"postcss": "^8.4.24",
44+
"postcss": "^8.4.38",
4545
"postcss-url": "^10.1.3",
4646
"sass-lint": "^1.13.1",
4747
"sass.js": "^0.11.1",
48-
"semver": "^7.5.2",
48+
"semver": "^7.6.2",
4949
"source-map": "^0.8.0-beta.0",
50-
"svelte": "^3.59.2",
51-
"ts-plugin-inferno": "^6.0.0",
52-
"tslib": "^2.5.3",
53-
"typescript": "^5.1.3",
50+
"svelte": "^4.2.16",
51+
"ts-plugin-inferno": "^6.0.3",
52+
"tslib": "^2.6.2",
53+
"typescript": "^5.4.5",
5454
"zora": "^5.2.0"
5555
},
5656
"overrides": {

client/src-worker/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
// Use reflect.metadata polyfill from Aurelia 2
2-
// To make both Aurelia 1 and 2 happy.
1+
// metadata Polyfill from Aurelia 1
2+
import 'aurelia-polyfills';
3+
// initializeTC39Metadata from Aurelia 2
34
import '@aurelia/kernel';
45

56
import {DumberSession} from './dumber-session';

client/src/navigation/dialogs/select-skeleton-dialog.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,13 @@ export class SelectSkeletonDialog {
6464
{
6565
value: 'esnext',
6666
label: 'ESNext (.js/.jsx)',
67-
icon: 'fab fa-js-square',
68-
description: 'Uses legacy decorator syntax.'
67+
icon: 'fab fa-js-square'
6968
},
7069
{
7170
value: 'typescript',
7271
label: 'TypeScript (.ts/.tsx)',
7372
icon: 'fab fa-js-square',
74-
description: 'Uses legacy decorator syntax, esModuleInterop is turned on.'
73+
description: 'esModuleInterop is turned on.'
7574
}
7675
];
7776

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "The private is set to true to avoid publishing to npm",
66
"license": "MIT",
77
"devDependencies": {
8-
"standard-changelog": "^2.0.27"
8+
"standard-changelog": "^6.0.0"
99
},
1010
"scripts": {
1111
"version": "standard-changelog && git add CHANGELOG.md",

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
},
1010
"license": "MIT",
1111
"devDependencies": {
12-
"eslint": "^8.13.0"
12+
"eslint": "^8.56.0"
1313
}
1414
}

0 commit comments

Comments
 (0)