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

@umm/simple_build

v1.4.6

Published

Provide BuildPlayer menu

Downloads

20

Readme

What?

  • シンプルなモバイルプラットフォーム向けのビルドを実行します。
  • Jenkins などの CI ツールから叩かれることを想定して、プラットフォーム別の外部公開メソッドを提供しています。
  • アプリケーションそのものと AssetBundle のビルドを提供します。

Why?

  • Jenkins から叩ける汎用的なビルド処理の受け口が欲しかったので実装しました。

Install

$ npm install -D github:umm-projects/simple_build.git

Usage

/Applications/Unity/Unity.app/Contents/MacOS/Unity -quit -batchmode -projectPath /path/to/unity -executeMethod SimpleBuild.BuildPlayer.Run_iOS
/Applications/Unity/Unity.app/Contents/MacOS/Unity -quit -batchmode -projectPath /path/to/unity -executeMethod SimpleBuild.BuildPlayer.Run_Android
/Applications/Unity/Unity.app/Contents/MacOS/Unity -quit -batchmode -projectPath /path/to/unity -executeMethod SimpleBuild.BuildAssetBundle.Run_iOS
/Applications/Unity/Unity.app/Contents/MacOS/Unity -quit -batchmode -projectPath /path/to/unity -executeMethod SimpleBuild.BuildAssetBundle.Run_Android
  • Jenkins などから、 SimpleBuild.BuildPlayer.Run_XXX でプラットフォーム別にビルドを呼び出します。
  • プロジェクトのメニューの Project > Build Player を実行すると、現在エディタが向いているプラットフォーム向けのプレイヤービルドを実行します。
  • プロジェクトのメニューの Project > Build AssetBundle を実行すると、現在エディタが向いているプラットフォーム向けの AssetBundle ビルドを実行します。

AssetBundle ビルド前後処理

  • Unity 2017.1 時点では AssetBundle のビルド前後に処理を挟むことができません。
  • そのため、擬似的に処理を実行できる仕組みを組み込んでいます。
  • interface として SimpleBuild.IPreprocessBuildAssetBundleSimpleBuild.IPostprocessBuildAssetBundle を提供しているので、必要に応じてそれぞれ OnPreprocessBuildAssetBundleOnPostprocessBuildAssetBundle を実装してください。
    • どちらのメソッドも引数に AssetBundle 出力先のディレクトリパスを渡します。

License

Copyright (c) 2017 Tetsuya Mori

Released under the MIT license, see LICENSE.txt