@lark-apaas/coding-template-html-standard-webapp 0.1.0-alpha.20260827110728 → 0.1.0

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.
package/README.md CHANGED
@@ -10,8 +10,8 @@ This package is consumed by [miaoda-cli](https://code.byted.org/apaas/miaoda-cli
10
10
 
11
11
  ## 与 html 模板(妙搭沙箱形态)的区别
12
12
 
13
- - 无 `@lark-apaas/coding-html-devserver` 依赖,也无 package.json——`dev.command` 在 miaoda.json 中直接声明 `npx serve`
14
- - 无构建:`miaoda.json` 不声明 `build.command`,`build.output: "."` 项目目录直接打包(协议 v0.3 buildless 形态)
13
+ - 无 `@lark-apaas/coding-html-devserver` 依赖,也无 package.json——`dev.command` 在 spark.json 中直接声明 `npx serve`
14
+ - 无构建:`spark.json` 不声明 `build.command`,`build.output: "."` 项目目录直接打包(协议 v0.3 buildless 形态)
15
15
  - routes.json 由 lark-cli 打包时扫描 `.html` 文件树生成,工程侧零协议心智
16
16
  - Level 1 同源:资源相对路径引用,不消费任何 `MIAODA_*` 环境变量
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/coding-template-html-standard-webapp",
3
- "version": "0.1.0-alpha.20260827110728",
3
+ "version": "0.1.0",
4
4
  "description": "Buildless HTML template for miaoda local development (no build step, no platform SDK)",
5
5
  "type": "module",
6
6
  "files": [
@@ -2,12 +2,12 @@
2
2
 
3
3
  ## 形态
4
4
 
5
- 纯 HTML 多页应用,**无构建步骤(buildless)**:`miaoda.json` 未声明 `build.command`,部署时项目目录(`build.output: "."`)直接打包上传,routes.json 由部署工具扫描 `.html` 文件树自动生成。
5
+ 纯 HTML 多页应用,**无构建步骤(buildless)**:`spark.json` 未声明 `build.command`,部署时项目目录(`build.output: "."`)直接打包上传,routes.json 由部署工具扫描 `.html` 文件树自动生成。
6
6
 
7
7
  ## 开发
8
8
 
9
- - 启动本地静态服务:`npx -y serve -l 5173 -n .`(即 `miaoda.json` 里 `dev.command` 声明的命令),编辑文件后刷新页面即可
10
- - 无 package.json、无 node_modules、无依赖安装步骤——`miaoda.json` 即项目的全部声明
9
+ - 启动本地静态服务:`npx -y serve -l 5173 -n .`(即 `spark.json` 里 `dev.command` 声明的命令),编辑文件后刷新页面即可
10
+ - 无 package.json、无 node_modules、无依赖安装步骤——`spark.json` 即项目的全部声明
11
11
 
12
12
  ## 目录与路由
13
13
 
File without changes