-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🚀 add farmConfiguration and initialize miniProgram github
- Loading branch information
Showing
29 changed files
with
1,495 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# 配置文档参考 https://taro-docs.jd.com/docs/next/env-mode-config | ||
# TARO_APP_ID="开发环境下的小程序appid" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# TARO_APP_ID="生产环境下的小程序appid" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# TARO_APP_ID="测试环境下的小程序appid" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
dist/ | ||
deploy_versions/ | ||
.temp/ | ||
.rn_temp/ | ||
node_modules/ | ||
.DS_Store | ||
.swc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// babel-preset-taro 更多选项和默认值: | ||
// https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md | ||
module.exports = { | ||
presets: [ | ||
[ | ||
"taro", | ||
{ | ||
framework: "react", | ||
ts: true | ||
} | ||
] | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type { UserConfigExport } from "@tarojs/cli"; | ||
export default { | ||
logger: { | ||
quiet: false, | ||
stats: true | ||
}, | ||
mini: {}, | ||
h5: {} | ||
} satisfies UserConfigExport; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
import { defineConfig, type UserConfigExport } from "@tarojs/cli"; | ||
import TsconfigPathsPlugin from "tsconfig-paths-webpack-plugin"; | ||
import devConfig from "./dev"; | ||
import prodConfig from "./prod"; | ||
|
||
// https://taro-docs.jd.com/docs/next/config#defineconfig-辅助函数 | ||
export default defineConfig(async (merge, { command, mode }) => { | ||
console.log(command, mode); | ||
const baseConfig: UserConfigExport = { | ||
projectName: "MiniProgram-Github", | ||
date: "2024-6-11", | ||
designWidth: 750, | ||
deviceRatio: { | ||
640: 2.34 / 2, | ||
750: 1, | ||
375: 2, | ||
828: 1.81 / 2 | ||
}, | ||
sourceRoot: "src", | ||
outputRoot: "dist", | ||
plugins: [], | ||
defineConstants: {}, | ||
copy: { | ||
patterns: [], | ||
options: {} | ||
}, | ||
framework: "react", | ||
compiler: "webpack5", | ||
cache: { | ||
enable: false // Webpack 持久化缓存配置,建议开启。默认配置请参考:https://docs.taro.zone/docs/config-detail#cache | ||
}, | ||
mini: { | ||
postcss: { | ||
pxtransform: { | ||
enable: true, | ||
config: {} | ||
}, | ||
url: { | ||
enable: true, | ||
config: { | ||
limit: 1024 // 设定转换尺寸上限 | ||
} | ||
}, | ||
cssModules: { | ||
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true | ||
config: { | ||
namingPattern: "module", // 转换模式,取值为 global/module | ||
generateScopedName: "[name]__[local]___[hash:base64:5]" | ||
} | ||
} | ||
}, | ||
webpackChain(chain) { | ||
chain.resolve.plugin("tsconfig-paths").use(TsconfigPathsPlugin); | ||
} | ||
}, | ||
h5: { | ||
publicPath: "/", | ||
staticDirectory: "static", | ||
output: { | ||
filename: "js/[name].[hash:8].js", | ||
chunkFilename: "js/[name].[chunkhash:8].js" | ||
}, | ||
miniCssExtractPluginOption: { | ||
ignoreOrder: true, | ||
filename: "css/[name].[hash].css", | ||
chunkFilename: "css/[name].[chunkhash].css" | ||
}, | ||
postcss: { | ||
autoprefixer: { | ||
enable: true, | ||
config: {} | ||
}, | ||
cssModules: { | ||
enable: false, // 默认为 false,如需使用 css modules 功能,则设为 true | ||
config: { | ||
namingPattern: "module", // 转换模式,取值为 global/module | ||
generateScopedName: "[name]__[local]___[hash:base64:5]" | ||
} | ||
} | ||
}, | ||
webpackChain(chain) { | ||
chain.resolve.plugin("tsconfig-paths").use(TsconfigPathsPlugin); | ||
} | ||
}, | ||
rn: { | ||
appName: "taroDemo", | ||
postcss: { | ||
cssModules: { | ||
enable: false // 默认为 false,如需使用 css modules 功能,则设为 true | ||
} | ||
} | ||
} | ||
}; | ||
if (process.env.NODE_ENV === "development") { | ||
// 本地开发构建配置(不混淆压缩) | ||
return merge({}, baseConfig, devConfig); | ||
} | ||
// 生产构建配置(默认开启压缩混淆等) | ||
return merge({}, baseConfig, prodConfig); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import type { UserConfigExport } from "@tarojs/cli"; | ||
export default { | ||
mini: {}, | ||
h5: { | ||
/** | ||
* WebpackChain 插件配置 | ||
* @docs https://github.com/neutrinojs/webpack-chain | ||
*/ | ||
// webpackChain (chain) { | ||
// /** | ||
// * 如果 h5 端编译后体积过大,可以使用 webpack-bundle-analyzer 插件对打包体积进行分析。 | ||
// * @docs https://github.com/webpack-contrib/webpack-bundle-analyzer | ||
// */ | ||
// chain.plugin('analyzer') | ||
// .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin, []) | ||
// /** | ||
// * 如果 h5 端首屏加载时间过长,可以使用 prerender-spa-plugin 插件预加载首页。 | ||
// * @docs https://github.com/chrisvfritz/prerender-spa-plugin | ||
// */ | ||
// const path = require('path') | ||
// const Prerender = require('prerender-spa-plugin') | ||
// const staticDir = path.join(__dirname, '..', 'dist') | ||
// chain | ||
// .plugin('prerender') | ||
// .use(new Prerender({ | ||
// staticDir, | ||
// routes: [ '/pages/index/index' ], | ||
// postProcess: (context) => ({ ...context, outputPath: path.join(staticDir, 'index.html') }) | ||
// })) | ||
// } | ||
} | ||
} satisfies UserConfigExport; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const defineJestConfig = require("@tarojs/test-utils-react/dist/jest.js").default; | ||
|
||
module.exports = defineJestConfig({ | ||
testEnvironment: "jsdom", | ||
testMatch: ["<rootDir>/__tests__/**/*.(spec|test).[jt]s?(x)"] | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{ | ||
"name": "MiniProgram-Github", | ||
"version": "1.0.0", | ||
"private": true, | ||
"description": "小程序的github", | ||
"templateInfo": { | ||
"name": "default", | ||
"typescript": true, | ||
"css": "Less", | ||
"framework": "React" | ||
}, | ||
"scripts": { | ||
"build:weapp": "taro build --type weapp", | ||
"build:swan": "taro build --type swan", | ||
"build:alipay": "taro build --type alipay", | ||
"build:tt": "taro build --type tt", | ||
"build:h5": "taro build --type h5", | ||
"build:rn": "taro build --type rn", | ||
"build:qq": "taro build --type qq", | ||
"build:jd": "taro build --type jd", | ||
"build:quickapp": "taro build --type quickapp", | ||
"build:harmony-hybrid": "taro build --type harmony-hybrid", | ||
"dev:weapp": "npm run build:weapp -- --watch", | ||
"dev:swan": "npm run build:swan -- --watch", | ||
"dev:alipay": "npm run build:alipay -- --watch", | ||
"dev:tt": "npm run build:tt -- --watch", | ||
"dev:h5": "npm run build:h5 -- --watch", | ||
"dev:rn": "npm run build:rn -- --watch", | ||
"dev:qq": "npm run build:qq -- --watch", | ||
"dev:jd": "npm run build:jd -- --watch", | ||
"dev:quickapp": "npm run build:quickapp -- --watch", | ||
"dev:harmony-hybrid": "npm run build:harmony-hybrid -- --watch", | ||
"test": "jest" | ||
}, | ||
"browserslist": [ | ||
"last 3 versions", | ||
"Android >= 4.1", | ||
"ios >= 8" | ||
], | ||
"author": "", | ||
"dependencies": { | ||
"@babel/runtime": "^7.21.5", | ||
"@tarojs/components": "3.6.25", | ||
"@tarojs/helper": "3.6.25", | ||
"@tarojs/plugin-platform-weapp": "3.6.25", | ||
"@tarojs/plugin-platform-alipay": "3.6.25", | ||
"@tarojs/plugin-platform-tt": "3.6.25", | ||
"@tarojs/plugin-platform-swan": "3.6.25", | ||
"@tarojs/plugin-platform-jd": "3.6.25", | ||
"@tarojs/plugin-platform-qq": "3.6.25", | ||
"@tarojs/plugin-platform-h5": "3.6.25", | ||
"@tarojs/plugin-platform-harmony-hybrid": "3.6.25", | ||
"@tarojs/runtime": "3.6.25", | ||
"@tarojs/shared": "3.6.25", | ||
"@tarojs/taro": "3.6.25", | ||
"@tarojs/plugin-framework-react": "3.6.25", | ||
"@tarojs/react": "3.6.25", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"zustand": "4.5.2" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.8.0", | ||
"@tarojs/cli": "3.6.25", | ||
"@types/webpack-env": "^1.13.6", | ||
"@tarojs/test-utils-react": "^0.1.1", | ||
"@types/react": "^18.0.0", | ||
"webpack": "5.78.0", | ||
"@tarojs/taro-loader": "3.6.25", | ||
"@tarojs/webpack5-runner": "3.6.25", | ||
"babel-preset-taro": "3.6.25", | ||
"eslint-config-taro": "3.6.25", | ||
"eslint": "^8.12.0", | ||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5", | ||
"react-refresh": "^0.11.0", | ||
"eslint-plugin-import": "^2.12.0", | ||
"tsconfig-paths-webpack-plugin": "^4.1.0", | ||
"ts-node": "^10.9.1", | ||
"@types/node": "^18.15.11", | ||
"@limuen/tsconfig": "workspace:*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"miniprogramRoot": "./dist", | ||
"projectname": "MiniProgram-Github", | ||
"description": "小程序的github", | ||
"appid": "touristappid", | ||
"setting": { | ||
"urlCheck": true, | ||
"es6": false, | ||
"enhance": false, | ||
"compileHotReLoad": false, | ||
"postcss": false, | ||
"minified": false | ||
}, | ||
"compileType": "miniprogram" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"miniprogramRoot": "./", | ||
"projectname": "MiniProgram-Github", | ||
"appid": "testAppId", | ||
"setting": { | ||
"es6": false, | ||
"minified": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
export default defineAppConfig({ | ||
pages: ["pages/index/index"], | ||
window: { | ||
backgroundTextStyle: "light", | ||
navigationBarBackgroundColor: "#fff", | ||
navigationBarTitleText: "WeChat", | ||
navigationBarTextStyle: "black" | ||
} | ||
}); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { PropsWithChildren } from "react"; | ||
import { useLaunch } from "@tarojs/taro"; | ||
import "./app.less"; | ||
|
||
function App({ children }: PropsWithChildren<any>) { | ||
useLaunch(() => { | ||
console.log("App launched."); | ||
}); | ||
|
||
// children 是将要会渲染的页面 | ||
return children; | ||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> | ||
<meta content="width=device-width,initial-scale=1,user-scalable=no" name="viewport" /> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-touch-fullscreen" content="yes" /> | ||
<meta name="format-detection" content="telephone=no,address=no" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="white" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<title>MiniProgram-Github</title> | ||
<script> | ||
<%= htmlWebpackPlugin.options.script %> | ||
</script> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default definePageConfig({ | ||
navigationBarTitleText: "首页" | ||
}); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { View, Text } from "@tarojs/components"; | ||
import { useLoad } from "@tarojs/taro"; | ||
import "./index.less"; | ||
|
||
export default function Index() { | ||
useLoad(() => { | ||
console.log("Page loaded."); | ||
}); | ||
|
||
return ( | ||
<View className="index"> | ||
<Text>Hello world Taro!</Text> | ||
</View> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": "@limuen/tsconfig/base.json", | ||
"compilerOptions": { | ||
"typeRoots": ["node_modules/@types"], | ||
"baseUrl": "./", | ||
"paths": { | ||
"@/*": ["src/*"] | ||
} | ||
}, | ||
"include": ["./src", "./types", "./config", "src/**/*.d.ts"], | ||
"exclude": ["node_modules", "dist"], | ||
"compileOnSave": false | ||
} |
Oops, something went wrong.