Skip to content

开发环境的基础仓库,只能fork不能提交组件开发代码

Notifications You must be signed in to change notification settings

mxm-web-develop/cursor_react_module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

环境使用流程

// @ts-expect-error 这里是因为样式文件可能没有类型定义开发环境已经内置了代码架构 prompts,需要写一个 文件的时候按照:

  ##需求##: 这里写你的具体需求。
  ##参考文档##:这里@本地文档,或者网站。
  ##代码结构规范##:这里@docs/Guideline/具体要写的模块,进行代码的格式规范
  ##详细描述##:如需要,这里可以补充一些更详细的要求
  ##样式参考##:这里@design里面的对应设计稿或者figma文件进行样式参考

如果是第一次打开 cursor,复制对应系统提示进入 Rule for AI:

  根据用户提问进行详细回复。
  如果用户的提示词中出现:
   ##需求##,##参考文档##,##代码结构规范##,##详细描述##,##样式参考##,优先理解这些部分的要求,依据相关联的内容对最终回复进行严格的规范
  回复默认统一使用中文

注意事项

  • npm 镜像下载依赖时: npm config set registry https://registry.npmmirror.com 发布包时: npm config set registry https://registry.npmjs.org 验证当前设置: npm config get registry

  • git config --global http.proxy http://127.0.0.1:7890

  • git config --global https.proxy https://127.0.0.1:7890

打包流程

  • 激活打包命令
 chmod +x patch.sh
  • 打版本补丁
 ./patch.sh
  • 打包库
  npm run build
  • 发布库
 npm run publish:lib
  • 最终打包结果只包含/application/*, 排除了所有其他开发环境的代码,详情查看 package.json
 "include": [
    "src/application/**/*"
  ],
  "exclude": [
    "node_modules",
    "src/main.tsx",
    "src/Preview.tsx",
    "type.d.ts",
    "vite-env.d.ts"
  ],

About

开发环境的基础仓库,只能fork不能提交组件开发代码

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published