Skip to content

Commit

Permalink
Merge pull request #13 from regal/stage
Browse files Browse the repository at this point in the history
Release 1.1.0
  • Loading branch information
jcowman2 committed Mar 8, 2019
2 parents a438f0f + 09d341f commit d507b35
Show file tree
Hide file tree
Showing 7 changed files with 150 additions and 458 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# Regal CLI Changelog

## v1.1.0 (2019-03-08)

### Dependency Changes
* Change `regal-bundler` to be a direct dependency and `regal` to be a peer dependency ([`f01f581`](https://github.com/regal/regal-cli/commit/f01f5818a6722b1ef85c07c8fd9b62852a325261)), fixes [#12](https://github.com/regal/regal-cli/issues/12)

## v1.0.1 (2019-03-07)

**Bug Fixes**
* Fixes issue where `bin/` wasn't being included in the package on npm.
### Bug Fixes
* Fix issue where `bin/` wasn't being included in the package on npm.

## v1.0.0 (2019-03-06)

Expand Down
16 changes: 2 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# regal-cli

[![npm version](https://badge.fury.io/js/regal-cli.svg)](https://badge.fury.io/js/regal-cli)
[![CircleCI](https://circleci.com/gh/regal/regal-cli.svg?style=svg)](https://circleci.com/gh/regal/regal-cli)
[![Coverage Status](https://coveralls.io/repos/github/regal/regal-cli/badge.svg?branch=master)](https://coveralls.io/github/regal/regal-cli?branch=master)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
Expand All @@ -14,19 +14,7 @@ In most cases, the Regal CLI should be installed as a global dependency.
npm install -g regal-cli
```

The CLI peer depends on [**regal-bundler**](https://github.com/regal/regal-bundler), which must be installed manually. You can either install this as a global dependency:

```
npm install -g regal-bundler
```

Or, as a dev dependency in your project.

```
npm install --save-dev regal-bundler
```

Finally, confirm that you've installed everything correctly:
Confirm that you've installed everything correctly:

```
regal
Expand Down
2 changes: 1 addition & 1 deletion dist/regal-cli.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var regalBundler = require('regal-bundler');
var path = require('path');
var readline = require('readline');

var version = "1.0.1";
var version = "1.1.0";
var description = "Command line interface for creating games with the Regal Framework";

const parseBoolean = (argName, argValue) => {
Expand Down
2 changes: 1 addition & 1 deletion dist/regal-cli.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { bundle } from 'regal-bundler';
import { join } from 'path';
import { createInterface } from 'readline';

var version$1 = "1.0.1";
var version$1 = "1.1.0";
var description = "Command line interface for creating games with the Regal Framework";

const parseBoolean = (argName, argValue) => {
Expand Down
Loading

0 comments on commit d507b35

Please sign in to comment.