-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
45 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
## 0.1.0 (2020-06-08) | ||
|
||
|
||
### Features | ||
|
||
* add github actions ([3776d3a](https://github.com/frouriojs/create-frourio-app/commit/3776d3a1aafd3f13a13a63e9a6ccc9b1e8d95d39)) | ||
* add nuxt template ([3ddeb8a](https://github.com/frouriojs/create-frourio-app/commit/3ddeb8a8857462df556d408b0ac06d1aecd1a7b3)) | ||
* add test ([f619a23](https://github.com/frouriojs/create-frourio-app/commit/f619a23518f3a5dd4af6953597e17914d52433c9)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* update snapshot ([675bbb4](https://github.com/frouriojs/create-frourio-app/commit/675bbb4ca9c9ad7de8ba5c16e079a0d6de95e42a)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,26 @@ | ||
# Create frourio app | ||
# Create frourio App | ||
|
||
[![NPM version](https://img.shields.io/npm/v/create-frourio-app.svg?style=flat)](https://npmjs.com/package/create-frourio-app) | ||
[![GitHub Action](https://github.com/frouriojs/create-frourio-app/workflows/Node.js%20CI/badge.svg?branch=master)](https://github.com/frouriojs/create-frourio-app/actions?query=branch%3Amaster++) | ||
|
||
> Create a [frourio](https://github.com/frouriojs/frourio) project in seconds | ||
## Usage | ||
|
||
Make sure you have [npx](https://www.npmjs.com/package/npx) installed (`npx` is shipped by default since [npm](https://www.npmjs.com/get-npm) `5.2.0`) | ||
|
||
```bash | ||
npx create-frourio-app <my-project> | ||
``` | ||
|
||
Or starting with npm v6.1 you can do: | ||
|
||
```bash | ||
npm init frourio-app <my-project> | ||
``` | ||
|
||
Or with [yarn](https://yarnpkg.com/en/): | ||
|
||
```bash | ||
yarn create frourio-app <my-project> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "create-frourio-app", | ||
"version": "0.0.0", | ||
"version": "0.1.0", | ||
"description": "Create a frourio project in seconds", | ||
"author": "m-mitsuhide <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -24,7 +24,7 @@ | |
"url": "https://github.com/frouriojs/create-frourio-app/issues" | ||
}, | ||
"files": [ | ||
"dist" | ||
"lib" | ||
], | ||
"keywords": [ | ||
"frourio" | ||
|