Skip to content

Commit

Permalink
fix(package): rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1211 committed Jun 30, 2017
1 parent 94b9ebd commit 15814fb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# react-library-skeleton
# react-karma-library-skeleton

[![Build Status](https://travis-ci.org/jedwards1211/react-library-skeleton.svg?branch=master)](https://travis-ci.org/jedwards1211/react-library-skeleton)
[![Coverage Status](https://coveralls.io/repos/github/jedwards1211/react-library-skeleton/badge.svg?branch=master)](https://coveralls.io/github/jedwards1211/react-library-skeleton?branch=master)
[![Build Status](https://travis-ci.org/jedwards1211/react-karma-library-skeleton.svg?branch=master)](https://travis-ci.org/jedwards1211/react-karma-library-skeleton)
[![Coverage Status](https://coveralls.io/repos/github/jedwards1211/react-karma-library-skeleton/badge.svg?branch=master)](https://coveralls.io/github/jedwards1211/react-karma-library-skeleton?branch=master)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)

This is my personal skeleton for creating a React library npm package. You are welcome to use it.
This is my personal skeleton for creating a React library npm package with Karma tests. You are welcome to use it.

## Quick start

```sh
npm i -g howardroark/pollinate
pollinate https://github.com/jedwards1211/react-library-skeleton.git --keep-history --name <package name> --author <your name> --organization <github organization> --description <package description>
pollinate https://github.com/jedwards1211/react-karma-library-skeleton.git --keep-history --name <package name> --author <your name> --organization <github organization> --description <package description>
cd <package name>
npm i
```
Expand All @@ -21,15 +21,15 @@ npm i
* babel 6
* mocha
* chai
* istanbul
* nyc
* babel-plugin-istanbul
* eslint
* eslint-watch
* flow
* flow-watch
* enzyme
* jsdom
* karma
* karma-webpack
* karma-coverage
* karma-mocha
* husky
* commitmsg: uses `validate-commit-msg`
* precommit: runs `eslint` and `flow`
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-library-skeleton",
"name": "react-karma-library-skeleton",
"version": "0.0.0-development",
"description": "my personal skeleton for React library NPM packages",
"description": "my personal skeleton for React library NPM packages with Karma tests",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src test stories",
Expand Down Expand Up @@ -42,7 +42,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedwards1211/react-library-skeleton.git"
"url": "git+https://github.com/jedwards1211/react-karma-library-skeleton.git"
},
"keywords": [
"es2015",
Expand All @@ -52,9 +52,9 @@
"author": "Andy Edwards",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedwards1211/react-library-skeleton/issues"
"url": "https://github.com/jedwards1211/react-karma-library-skeleton/issues"
},
"homepage": "https://github.com/jedwards1211/react-library-skeleton#readme",
"homepage": "https://github.com/jedwards1211/react-karma-library-skeleton#readme",
"devDependencies": {
"@jedwards1211/eslint-config-flow": "^1.0.0",
"@jedwards1211/eslint-config-react": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import { storiesOf } from '@storybook/react'
import Hello from '../src/index'

storiesOf('react-library-skeleton', module)
storiesOf('react-karma-library-skeleton', module)
.add('Hello', () => (
<Hello />
))
4 changes: 2 additions & 2 deletions template.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"organization": "jedwards1211",
"scope": "",
"name": "react-library-skeleton",
"description": "my personal skeleton for React library NPM packages",
"name": "react-karma-library-skeleton",
"description": "my personal skeleton for React library NPM packages with Karma tests",
"author": "Andy Edwards",
"parse": [
"TEMPLATE-README.md",
Expand Down

0 comments on commit 15814fb

Please sign in to comment.