From a48fb5ca97ffab1d9605d66d17b455cbd9a2e689 Mon Sep 17 00:00:00 2001 From: zhangjuncao <163953928+zhangjuncao@users.noreply.github.com> Date: Thu, 20 Feb 2025 17:21:28 -0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E9=80=82=E9=85=8D?= =?UTF-8?q?=E5=89=8D=E7=AB=AF=E4=BC=A0token=E5=80=BC=20(#183)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: add doc * modify doc * fix:modify adapt nodejs to java create app * fix:fix doc * fix:fix h2 script * fix:fix the official website document link * fix:fix AI token * fix:modify ai token * fix:fix Ai token * fix:fix issues * fix:fix issues * fix:modify comment From 0b5460bf80c13f00081b3dc24477e5610dfc372d Mon Sep 17 00:00:00 2001 From: GuanMo <13216698987@163.com> Date: Sat, 22 Mar 2025 13:33:37 +0800 Subject: [PATCH 2/2] feat: add npmrc info to component schema info --- .../com/tinyengine/it/service/app/impl/v1/AppV1ServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/base/src/main/java/com/tinyengine/it/service/app/impl/v1/AppV1ServiceImpl.java b/base/src/main/java/com/tinyengine/it/service/app/impl/v1/AppV1ServiceImpl.java index 58270f05..71545703 100644 --- a/base/src/main/java/com/tinyengine/it/service/app/impl/v1/AppV1ServiceImpl.java +++ b/base/src/main/java/com/tinyengine/it/service/app/impl/v1/AppV1ServiceImpl.java @@ -513,6 +513,7 @@ private List> getComponentSchema(List components) schema.put("exportName", npm.get("exportName")); schema.put("destructuring", npm.get("destructuring") != null ? npm.get("destructuring") : false); schema.put("version", npm.get("version") != null ? npm.get("version") : ""); + schema.put("npmrc", npm.get("npmrc") != null ? npm.get("npmrc") : null); schemas.add(schema); }