Skip to content

Commit

Permalink
chore(release): 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
solufa committed Jun 8, 2020
1 parent ff9654a commit d397126
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 15 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,6 @@ jobs:
with:
node-version: "12.x"
registry-url: "https://registry.npmjs.org"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn --frozen-lockfile
- run: yarn build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
17 changes: 17 additions & 0 deletions CHANGELOG.md
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))
27 changes: 26 additions & 1 deletion README.md
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>
```
4 changes: 2 additions & 2 deletions package.json
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",
Expand All @@ -24,7 +24,7 @@
"url": "https://github.com/frouriojs/create-frourio-app/issues"
},
"files": [
"dist"
"lib"
],
"keywords": [
"frourio"
Expand Down

0 comments on commit d397126

Please sign in to comment.