Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tjkendev/blockgame-2014

2014年制作ゲーム: 繋ぎ消しパズル
https://github.com/tjkendev/blockgame-2014

coffeescript game grunt pug webpack

Last synced: 15 days ago
JSON representation

2014年制作ゲーム: 繋ぎ消しパズル

Awesome Lists containing this project

README

        

# 繋ぎ消しパズル

2014年工大祭で展示していたゲームで、その中から音楽と効果音を抜いたもの

[ここ](http://smijake3.s602.xrea.com/game/rogy/kodaisai14/) で音楽・効果音付きの動いているものが遊べる

## Requirement

- node v14.7.0
- npm 7.6.0

## Install

必要なモジュールをインストール
```bash
$ npm install
```

webpack, gruntはglobalにインストール
```bash
$ npm install -g webpack webpack-cli grunt grunt-cli
```

## Compile

### ソースコードのコンパイル + 画像の圧縮

```bash
$ grunt
```
コンパイル、圧縮すると、"public"内に出力される

### jsファイルの監視自動コンパイル

```bash
$ webpack --watch
```

もしくは

```bash
$ grunt watch
```

### 画像の圧縮

```bash
$ grunt image
```