Skip to content

Commit

Permalink
edit README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ienaga committed May 12, 2023
1 parent aa25ec3 commit f5b9c26
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 8 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish Package

on:
push:
branches:
- publish

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- run: npm install
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
36 changes: 28 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,37 @@
env
Multi-platform Builder
=============

[![UnitTest](https://github.com/Next2D/env/actions/workflows/integration.yml/badge.svg?branch=main)](https://github.com/Next2D/env/actions/workflows/integration.yml)
[![CodeQL](https://github.com/Next2D/env/actions/workflows/codeql-analysis.yml/badge.svg?branch=main)](https://github.com/Next2D/env/actions/workflows/codeql-analysis.yml)
[![Lint](https://github.com/Next2D/env/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/Next2D/env/actions/workflows/lint.yml)
[![release](https://img.shields.io/github/v/release/Next2D/env)](https://github.com/Next2D/env/releases)
[![license](https://img.shields.io/github/license/Next2D/env)](https://github.com/Next2D/env/blob/main/LICENSE)
[![CodeQL](https://github.com/Next2D/builder/actions/workflows/codeql-analysis.yml/badge.svg?branch=main)](https://github.com/Next2D/builder/actions/workflows/codeql-analysis.yml)
[![Lint](https://github.com/Next2D/builder/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/Next2D/builder/actions/workflows/lint.yml)
[![release](https://img.shields.io/github/v/release/Next2D/builder)](https://github.com/Next2D/builder/releases)
[![license](https://img.shields.io/github/license/Next2D/builder)](https://github.com/Next2D/builder/blob/main/LICENSE)

[日本語]\
Next2D Frameworkのマルチプラットフォームビルダー、macOS、Windows、iOS、Android、Web(HTML)など、各種プラットフォームへの書き出しに対応

Next2D Framework env function.
[English]\
Next2D Framework multi-platform builder, supports export to various platforms including macOS, Windows, iOS, Android, and Web (HTML)

## Supported

| platform | detail |
|----------|--------------------------|
| macOS | Export dmg file |
| Windows | Export an exe file |
| iOS | Implementing... |
| Android | Implementing... |
| web | Export minfy'd JS files |

### build example.

```linux
npx @next2d/builder --platform web --env prd
```

### debug example.

```linux
npm i -D @next2d/env
npx @next2d/builder --debug --platform web --env prd
```

## License
Expand Down

0 comments on commit f5b9c26

Please sign in to comment.