Skip to content
This repository has been archived by the owner on Nov 23, 2020. It is now read-only.

Commit

Permalink
v1.0.0 (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored Nov 6, 2018
1 parent ce4e08f commit 382c185
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 30 deletions.
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Loona works with [**React**](./packages/react/README.md) and [**Angular**](./pac

All of the documentation for Loona including usage articles and helpful recipes lives on [loonajs.com](https://loonajs.com).

## Read about Loona

- [Introducing Loona](https://medium.com/the-guild/loona-state-management-graphql-77baf6734f1)

## Features

- **Single store** - Keep your remote and local data in just one space and make it a single source of truth.
Expand All @@ -39,24 +43,6 @@ It also uses a concept of:

By having it all, Loona helps you to keep every piece of your data's flow separated.

## Example

Check out [loonajs.com](https://loonajs.com)

```typescript
@State({
defaults: {
notes: [],
},
})
export class NotesState {
// Resolvers
// Mutations
// Updates
// Action handlers
}
```

---

## Contributing
Expand Down
4 changes: 2 additions & 2 deletions examples/react/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "examples-react-basic",
"version": "1.0.0-beta.6",
"version": "1.0.0",
"private": true,
"dependencies": {
"@loona/react": "1.0.0-beta.6",
"@loona/react": "1.0.0",
"@material-ui/core": "3.1.0",
"@material-ui/icons": "3.0.1",
"apollo-cache-inmemory": "1.3.7",
Expand Down
8 changes: 4 additions & 4 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@loona/angular",
"version": "1.0.0-beta.6",
"version": "1.0.0",
"description": "App State Management done with GraphQL (angular integration)",
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
Expand Down Expand Up @@ -34,16 +34,16 @@
"release:canary": "yarn build && npm publish build --tag canary"
},
"peerDependencies": {
"@angular/core": "^6.1.0 || ^7.0.0",
"apollo-angular": "^1.2.0",
"@angular/core": "^6.1.0 && ^7.0.0",
"apollo-angular": "^1.3.0",
"apollo-client": "^2.3.0",
"apollo-cache": "^1.0.0",
"apollo-link": "^1.0.0",
"graphql": "^0.13.2 || ^14.0.0",
"rxjs": "^6.0.0"
},
"dependencies": {
"@loona/core": "1.0.0-beta.6"
"@loona/core": "1.0.0"
},
"devDependencies": {
"@angular/common": "7.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@loona/core",
"version": "1.0.0-beta.6",
"version": "1.0.0",
"description": "App State Management done with GraphQL (core package)",
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
Expand Down
6 changes: 2 additions & 4 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@loona/react",
"version": "1.0.0-beta.6",
"version": "1.0.0",
"description": "App State Management done with GraphQL (react integration)",
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
Expand Down Expand Up @@ -40,13 +40,11 @@
"react-apollo": "^2.1.0"
},
"dependencies": {
"@loona/core": "1.0.0-beta.6",
"invariant": "^2.2.2",
"@loona/core": "1.0.0",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@types/graphql": "14.0.3",
"@types/invariant": "2.2.29",
"@types/jest": "23.3.9",
"@types/prop-types": "15.5.6",
"@types/react": "16.4.18",
Expand Down
2 changes: 1 addition & 1 deletion packages/schematics/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{
"name": "@loona/schematics",
"version": "1.0.0-beta.6",
"version": "1.0.0",
"description": "Loona Angular Schematics",
"author": "Kamil Kisiela <kamil.kisiela@gmail.com>",
"license": "MIT",
Expand Down
Empty file modified scripts/release.sh
100644 → 100755
Empty file.

0 comments on commit 382c185

Please sign in to comment.