Skip to content

Commit fc6c055

Browse files
nanasessclaude
andcommitted
fix(admin): jquery-ui 1.14 で削除された ui/core の読み込みを除去
jquery-ui 1.14.0 で ui/core.js が削除されたため、admin.bundle.js のビルドが Module not found: Can't resolve 'jquery-ui/ui/core' で失敗し、E2E の全ジョブが アセットビルド段階で落ちていた。 ui/core.js は data / keycode / version などをまとめて読み込むだけのモジュールで、 1.14 では各 widget が必要な依存を自身で require する。管理画面のテンプレート・JS に core 由来のユーティリティ ($.ui.keyCode / disableSelection / :tabbable 等) の 直接利用はないため、読み込みを削除するだけで足りる。 あわせて npm run build の成果物を反映する。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 7953461 commit fc6c055

4 files changed

Lines changed: 13 additions & 14 deletions

File tree

html/bundle/admin.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html/bundle/admin.bundle.js.LICENSE.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
*/
6363

6464
/*!
65-
* jQuery UI :data 1.13.3
65+
* jQuery UI :data 1.14.2
6666
* https://jqueryui.com
6767
*
6868
* Copyright OpenJS Foundation and other contributors
@@ -71,7 +71,7 @@
7171
*/
7272

7373
/*!
74-
* jQuery UI Disable Selection 1.13.3
74+
* jQuery UI Disable Selection 1.14.2
7575
* https://jqueryui.com
7676
*
7777
* Copyright OpenJS Foundation and other contributors
@@ -80,7 +80,7 @@
8080
*/
8181

8282
/*!
83-
* jQuery UI Keycode 1.13.3
83+
* jQuery UI Keycode 1.14.2
8484
* https://jqueryui.com
8585
*
8686
* Copyright OpenJS Foundation and other contributors
@@ -89,7 +89,7 @@
8989
*/
9090

9191
/*!
92-
* jQuery UI Mouse 1.13.3
92+
* jQuery UI Mouse 1.14.2
9393
* https://jqueryui.com
9494
*
9595
* Copyright OpenJS Foundation and other contributors
@@ -98,7 +98,7 @@
9898
*/
9999

100100
/*!
101-
* jQuery UI Position 1.13.3
101+
* jQuery UI Position 1.14.2
102102
* https://jqueryui.com
103103
*
104104
* Copyright OpenJS Foundation and other contributors
@@ -109,7 +109,7 @@
109109
*/
110110

111111
/*!
112-
* jQuery UI Resizable 1.13.3
112+
* jQuery UI Resizable 1.14.2
113113
* https://jqueryui.com
114114
*
115115
* Copyright OpenJS Foundation and other contributors
@@ -118,7 +118,7 @@
118118
*/
119119

120120
/*!
121-
* jQuery UI Scroll Parent 1.13.3
121+
* jQuery UI Scroll Parent 1.14.2
122122
* https://jqueryui.com
123123
*
124124
* Copyright OpenJS Foundation and other contributors
@@ -127,7 +127,7 @@
127127
*/
128128

129129
/*!
130-
* jQuery UI Sortable 1.13.3
130+
* jQuery UI Sortable 1.14.2
131131
* https://jqueryui.com
132132
*
133133
* Copyright OpenJS Foundation and other contributors
@@ -136,7 +136,7 @@
136136
*/
137137

138138
/*!
139-
* jQuery UI Tooltip 1.13.3
139+
* jQuery UI Tooltip 1.14.2
140140
* https://jqueryui.com
141141
*
142142
* Copyright OpenJS Foundation and other contributors
@@ -145,7 +145,7 @@
145145
*/
146146

147147
/*!
148-
* jQuery UI Unique ID 1.13.3
148+
* jQuery UI Unique ID 1.14.2
149149
* https://jqueryui.com
150150
*
151151
* Copyright OpenJS Foundation and other contributors
@@ -154,7 +154,7 @@
154154
*/
155155

156156
/*!
157-
* jQuery UI Widget 1.13.3
157+
* jQuery UI Widget 1.14.2
158158
* https://jqueryui.com
159159
*
160160
* Copyright OpenJS Foundation and other contributors

html/bundle/admin.bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html/template/admin/assets/js/bundle.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ require('ace-builds/webpack-resolver');
1010
require('jquery.qrcode');
1111

1212
require('jquery-ui/themes/base/all.css');
13-
require('jquery-ui/ui/core');
1413
require('jquery-ui/ui/position');
1514
require('jquery-ui/ui/widget');
1615
require('jquery-ui/ui/widgets/mouse');

0 commit comments

Comments
 (0)