git.fiddlerwoaroof.com
Browse code

rename state_container -> state-container. reformat

Ed Langley authored on 29/05/2018 18:31:26
Showing 2 changed files
... ...
@@ -1,7 +1,7 @@
1 1
 {
2
-  "name": "state_container",
2
+  "name": "state-container",
3 3
   "version": "1.0.0",
4
-  "description": "",
4
+  "description": "A simple tree-based state container that provides an alternative state model to redux",
5 5
   "main": "dist/state_container.js",
6 6
   "scripts": {
7 7
     "test": "jest",
... ...
@@ -1,8 +1,4 @@
1
-import * as R from 'ramda';
2
-import {
3
-    Map,
4
-    fromJS
5
-} from 'immutable';
1
+import { Map, fromJS } from 'immutable';
6 2
 
7 3
 let Symbol = (window['Symbol'] !== undefined) ? window['Symbol'] : x => `_Symbol__${x}`;
8 4
 
... ...
@@ -67,4 +63,4 @@ export function makeLens(key, self) {
67 63
     };
68 64
 
69 65
     return createLens(key instanceof Array ? key : [key]);
70
-}
71 66
\ No newline at end of file
67
+}