nextia 3.0.0 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/lib.js +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nextia",
3
3
  "description": "Create fast web applications",
4
- "version": "3.0.0",
4
+ "version": "3.0.2",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": {
package/src/lib.js CHANGED
@@ -122,7 +122,7 @@ const log = (reducer) => {
122
122
  const newState = reducer(state, action)
123
123
 
124
124
  console.log(
125
- `%c${action.isContext ? 'Context' : 'Page '} : %c${action.type}`, 'color: #60a495', 'color: #7ee5cc',
125
+ `%c${action.isContext ? 'Context' : 'Page '} %c${action.type}`, 'color: #90b1d1', 'color: #6592c8',
126
126
  getPayload(action), { a_State: state, b_NewState: newState }
127
127
  )
128
128