@xcanwin/manyoyo 5.1.4 → 5.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -80,6 +80,7 @@ ENV LANG=C.UTF-8 \
|
|
|
80
80
|
RUN <<EOX
|
|
81
81
|
# 配置 APT 镜像源
|
|
82
82
|
sed -i "s|http://[^/]*\.ubuntu\.com|${APT_MIRROR}|g" /etc/apt/sources.list.d/ubuntu.sources
|
|
83
|
+
ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
|
83
84
|
|
|
84
85
|
# 安装所有基础依赖
|
|
85
86
|
# 网络与连接
|
|
@@ -182,13 +183,13 @@ EOF
|
|
|
182
183
|
cp -a /tmp/openai-skills/skills/.system "$HOME/.codex/skills/.system"
|
|
183
184
|
rm -rf /tmp/openai-skills
|
|
184
185
|
CODEX_INSTALLER="$HOME/.codex/skills/.system/skill-installer/scripts/install-skill-from-github.py"
|
|
185
|
-
|
|
186
|
+
python3 "$CODEX_INSTALLER" --repo openai/skills --path \
|
|
186
187
|
skills/.curated/doc \
|
|
187
188
|
skills/.curated/spreadsheet \
|
|
188
189
|
skills/.curated/pdf \
|
|
189
190
|
skills/.curated/security-best-practices \
|
|
190
191
|
skills/.curated/security-threat-model
|
|
191
|
-
|
|
192
|
+
python3 "$CODEX_INSTALLER" --repo anthropics/skills --path \
|
|
192
193
|
skills/pptx \
|
|
193
194
|
skills/theme-factory \
|
|
194
195
|
skills/frontend-design \
|
package/lib/plugin/playwright.js
CHANGED
|
@@ -362,7 +362,7 @@ class PlaywrightPlugin {
|
|
|
362
362
|
if (!this.sceneConfigMissing(sceneName)) {
|
|
363
363
|
return;
|
|
364
364
|
}
|
|
365
|
-
this.runCmd(['npx', '-y', 'playwright-core', 'install', this.defaultBrowserName(sceneName)], { check: true });
|
|
365
|
+
this.runCmd(['npx', '-y', 'playwright-core', 'install', '--with-deps', this.defaultBrowserName(sceneName)], { check: true });
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
scenePidFile(sceneName) {
|