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

com.calci.projectbuilder

v1.2.4

Published

This package helps to build binary in various configuration.

Downloads

6

Readme

Project-Builder

미리 지정해둔 여러가지 옵션으로 빌드를 수행해주는 간단한 유틸리티입니다.

Install

{
    "dependencies": {
        "com.calci.projectbuilder": "1.2.4"
    }
}
{
    "scopedRegistries": [
        {
            "name": "npm",
            "url": "https://registry.npmjs.org",
            "scopes": [
                "com.calci"
            ]
        }
    ]
}

Fundamentals

기능 구현 벤치마크 및 프로파일링을 위해 가능한 모든 조합으로 빌드를 해야 할 일이 생겨 제작된 도구입니다. 단순히 모든 옵션으로 빌드를 하는 것 외에도 Deploy 환경에 따라 사용자 지정 옵션으로 드가 필요할 때 유용합니다. 클라이언트-서버, 크로스 플랫폼 등 여러 선택지 대응이 목표입니다.

Usage

  • BuildProfile : 하나의 바이너리 빌드를 생성하는 정의 프로필입니다.
  • BuildCollection : 여러개의 BuildProfile을 포함하여 다른 옵션의 빌드를 순차적으로 수행하기 위한 컬렉션입니다.
  • PB_MENUITEM : 프로젝트 설정의 PlayerSetting 에서 Scipting Symbol에 추가해주면 기본 메뉴아이템이 노출됩니다.

Wizard

Window/Project Builder Wizard

Build Profile

  • Expose To Wizard : 비활성화시 프로젝트 단위 검색에서 제외됩니다.
  • Build Path : 미리 지정된 심볼을 이용해 빌드 경로를 지정할 수 있습니다.
    • {ProjectRoot} : 프로젝트 루트 (Assets 폴더가 위치한 디렉터리로 대체)
    • {Platform} : 빌드된 플랫폼 (ex. Windows = Standalone)
    • {ProfileName} : 프로필 이름 (ex. client_il2cpp_release.asset 프로필 = client_il2cpp_release)
    • {ProductName} : 애플리케이션 이름 (Application.productName으로 대체)
  • Headless : 윈도우 플랫폼에서 그래픽스 API를 사용하지 않는 Console 모드로 빌드 (서버 빌드)

API

public static void BuildPlayer(eBackendType backend, eBuildType buildType, eShippingType shippingType)

MenuItem

image