npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mz-layaair2-cmd

v1.6.15

Published

layaair version 2 toolkit

Downloads

66

Readme

layaair2-cmd

layaair2-cmd是layaair 2.0的命令行工具,可以使用layaair2-cmd不打开IDE的情况下对layaair 2.0项目进行编译发布等操作。它包含以下功能,这些功能都对应一个子命令。

|功能|子命令| |-|-| |编译|compile| |发布|publish| |导出资源或ui|ui|

注:

  • 需要publish的IDE版本号为2.4.0+
  • node版本推荐10.* ,目前已知12.*、14.*和gulp之间有兼容性问题

安装

$ npm install layaair2-cmd -g

CLI

layaair2-cmd的命令类似git命令,它的形式是:

$ layaair2-cmd [command] [args]

比如编译项目:

$ layaair2-cmd compile

或者查看帮助信息:

$ layaair2-cmd --help

不仅layaair2-cmd本身,所有的子命令都有版本信息和帮助信息,查看子命令帮助信息:

$ layaair2-cmd command -h

编译

$ layaair2-cmd compile -h

    Usage: layaair2-cmd compile [options]

    Options:
        -w, --workspace <workspacePath>  Incoming workspace path
        -h, --help                       output usage information

如果当前目录是layaair项目,该命令会生成编译后的JavaScript文件。

如果使用-w指定了项目位置,则使用给定的位置;如果没有使用-w指定位置,则默认使用当前目录作为项目路径。

使用

layaair2-cmd compile
layaair2-cmd compile -w E:/workspace/layademo

发布

$ layaair2-cmd publish -h

    Usage: layaair2-cmd publish [options]

    Options:
        -c, --config <configPlatform>    Set the publishing platform name[web|wxgame|bdgame|xmgame]
        -w, --workspace <workspacePath>  Incoming workspace path
        -h, --help                       output usage information

如果当前目录是layaair项目,该命令会将发布的文件夹在release下面。

如果使用-w指定了项目位置,则使用给定的位置;如果没有使用-w指定位置,则默认使用当前目录作为项目路径。

支持的发布平台保持与项目中的引擎版本支持的发布平台一致。且需要开发者已经使用IDE发布过一次(或者有对应平台的发布配置的json文件),开发者可以查看项目.laya下的publish相关js文件。例如:

  • publish.js -- web

  • publish_wxgame.js -- wxgame

  • publish_bdgame.js -- bdgame

    ........

支持的发布平台有: taobaowidget|taobaominiapp|hwgame|bytedancegame|Alipaygame|biligame|vivogame|oppogame|xmgame|bdgame|qqgame|web|wxgame

使用

layaair2-cmd publish -c wxgame
layaair2-cmd publish -c web -w E:/workspace/layademo

导出资源或ui

layaair2-cmd ui -h
    Usage: layaair2-cmd-ui [options]

    Options:
        -w, --workspace <workspacePath>  Incoming workspace path
        -c --clear                       clear will delete old ui code file.
        -a --atlas                       generate atlas
        -d --code                        generate ui code files
        -m --mode <mode>                 'normal' or 'release', specify 'release' will generate UI code files exclude unused resources.
        -h, --help                       output usage information

如果当前目录是layaair项目,该命令会生成资源或ui文件。

如果使用-w指定了项目位置,则使用给定的位置;如果没有使用-w指定位置,则默认使用当前目录作为项目路径。

使用

layaair-cmd ui -c -m release    # 导出前清理,并且把mode设置为release
layaair-cmd ui -d               # 导出UI代码文件
layaair-cmd ui -a               # 导出图集文件