applets conversion cli
1.0.0
The mini program conversion tool supports common conversion scenarios, such as xml, js, and css. Currently, only "WeChat" and "Alipay" are supported
# npm
npm install applets-conversion-tool -g
# yarn
yarn add applets-conversion-tool global
parameter
parameter | value | describe |
-s "--src" | path | Input directory path before conversion |
-o "--out" | path | Converted output directory path |
-t "--target" | wx, my | Enter the applet type of the directory "Currently only supports wx, my" |
-e "-expect" | wx, my | The applet type of the output directory "currently only supports wx, my" |
-5 「–es5」 | true, false | When encountering some es6 syntax, should you convert it to es5? |
-f "--filter" | string | Filter keywords, filter the corresponding keywords in the file path, and filter "node_modules, .tea, .idea" by default |
Demo
# -s
applets-cli -t wx -e my -s test/applets/wechat-demo
# -o
applets-cli -t wx -e my -s test/applets/wechat-demo -o test/applets/wechat-demo-to-alipay
# -f
applets-cli -t wx -e my -s test/applets/wechat-demo -o test/applets/wechat-demo-to-alipay-filter -f expect-filter-dir
# -5
applets-cli -t wx -e my -s test/applets/wechat-demo -o test/applets/wechat-demo-to-alipay-filter-es5 -f expect-filter-dir -5 true
# init
yarn install
# build
./node_modules/gulp/bin/gulp.js
# npm
npm run test
# yarn
yarn test
Alipay
Test
Copyright (C) 2019 CaMnter [email protected]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.