Skip to content
This repository was archived by the owner on Sep 2, 2020. It is now read-only.

Update installation instruction #46

Merged
merged 7 commits into from
Nov 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: build

on:
push:
branches-ignore:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: setup node
uses: actions/setup-node@v1
with:
node-version: 12
- name: npm ci, build, and test
run: |
npm ci
npm run lint
npm run build
npm run test
npx codecov --file=./coverage/coverage-final.json --disable=gcov
env:
CI: true
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
55 changes: 55 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: publish

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: setup node
uses: actions/setup-node@v1
with:
node-version: 12
- name: npm ci, build, and test
run: |
npm ci
npm run lint
npm run build
npm run test
npx codecov --file=./coverage/coverage-final.json --disable=gcov
env:
CI: true
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

publish-gpr:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://npm.pkg.github.com/
scope: '@ranndev'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GPR_TOKEN}}
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.github
.vscode
.ts_cache*
coverage
Expand All @@ -9,7 +10,6 @@ typings
.gitattributes
.gitignore
.prettierrc
.travis.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
gulpfile.js
Expand Down
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"editor.formatOnSave": true,
"editor.rulers": [120],
"prettier.eslintIntegration": false,
"prettier.tslintIntegration": true,

"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ First off, thank you for considering contributing to AngularJS Store. It’s peo

**Found an issue or want to submit a new feature?**

1. Make sure to [file an issue](https://github.com/rannie-peralta/angularjs-store/issues/new) first.
2. Before [you create your pull request](https://github.com/rannie-peralta/angularjs-store/pulls).
1. Make sure to [file an issue](https://github.com/ranndev/angularjs-store/issues/new) first.
2. Before [you create your pull request](https://github.com/ranndev/angularjs-store/pulls).
3. Let's discuss there what we can do.

**Documentation correction**

1. [File an issue](https://github.com/rannie-peralta/angularjs-store/issues/new) for your spotted incorrect documentation.
1. [File an issue](https://github.com/ranndev/angularjs-store/issues/new) for your spotted incorrect documentation.
2. After we confirmed that it was really an error,
- you either be granted to have an access to correct it on [GitBook](https://www.gitbook.com/) by your own
- or other contributor that already have an access will update the documentation for you.
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,32 @@

AngularJS Store will guide you to create a one-way data flow in your application (Single Source of Truth). Manage your AngularJS application's state into a very predictable way.

[![Build Status](https://travis-ci.com/rannie-peralta/angularjs-store.svg?branch=master)](https://travis-ci.com/rannie-peralta/angularjs-store)
[![codecov](https://codecov.io/gh/rannie-peralta/angularjs-store/branch/develop/graph/badge.svg)](https://codecov.io/gh/rannie-peralta/angularjs-store)
[![Greenkeeper badge](https://badges.greenkeeper.io/rannie-peralta/angularjs-store.svg)](https://greenkeeper.io/)
[![Build Status](https://travis-ci.com/ranndev/angularjs-store.svg?branch=master)](https://travis-ci.com/ranndev/angularjs-store)
[![codecov](https://codecov.io/gh/ranndev/angularjs-store/branch/develop/graph/badge.svg)](https://codecov.io/gh/ranndev/angularjs-store)
[![Greenkeeper badge](https://badges.greenkeeper.io/ranndev/angularjs-store.svg)](https://greenkeeper.io/)

## Installation

**NPM**

```
npm install --save angularjs-store
npm install --save @ranndev/angularjs-store
```

**Yarn**

```
yarn add angularjs-store
yarn add @ranndev/angularjs-store
```

**CDN**

```html
<!-- For development -->
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/umd/angularjs-store.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@ranndev/[email protected].2/dist/umd/angularjs-store.js"></script>

<!-- For production -->
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/umd/angularjs-store.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@ranndev/[email protected].2/dist/umd/angularjs-store.min.js"></script>
```

## Quick Start
Expand Down Expand Up @@ -141,15 +141,15 @@ app.controller('YourController', function YourController($scope, counterStore) {
## Demo

- Sample App - https://angularjs-store-demo.netlify.com
- Source Code - https://github.com/rannie-peralta/angularjs-store-demo
- Source Code - https://github.com/ranndev/angularjs-store-demo

## Contributing

AngularJS Store is an open source project and we love to receive contributions from our community — you! There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests. See the [guidelines](CONTRIBUTING).

## Collaborators

- [Rannie Peralta](https://github.com/rannie-peralta)
- [Rannie Peralta](https://github.com/ranndev)

## License

Expand Down
3 changes: 2 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@

module.exports = {
collectCoverage: true,
collectCoverageFrom: ['<rootDir>/src/**/*', '!<rootDir>/src/**/__snapshots__/*'],
collectCoverageFrom: ['<rootDir>/src/**/*.ts'],
coverageDirectory: 'coverage',
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
testMatch: ['<rootDir>/src/**/*.test.ts'],
testPathIgnorePatterns: [
'<rootDir>/.github',
'<rootDir>/.vscode',
'<rootDir>/coverage',
'<rootDir>/dist',
Expand Down
Loading