@things-factory/shell 7.0.74 → 7.0.75

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.
package/README.md CHANGED
@@ -129,26 +129,10 @@ text-transform: uppercase;
129
129
 
130
130
  > Format on save: true
131
131
 
132
- - nodejs (v8.0.0 and above)
132
+ - nodejs (v20.0.0 and above)
133
133
 
134
134
  - yarn
135
135
 
136
- - Cordova
137
-
138
- > npm install -g cordova
139
-
140
- - Chrome Browser Extension
141
-
142
- > https://github.com/zalmoxisus/redux-devtools-extension
143
-
144
- - Yeoman
145
-
146
- > npm install -g yo
147
-
148
- - Things Factory Generator
149
-
150
- > npm install -g generator-things-factory
151
-
152
136
  - Node-gyp (For Ubuntu)
153
137
 
154
138
  > npm install -g node-gyp
package/client/store.js CHANGED
@@ -4,7 +4,8 @@ import app from './reducers/app.js'
4
4
  import route from './reducers/route.js'
5
5
 
6
6
  export const store = configureStore({
7
- devTools: process.env['NODE-ENV'] !== 'production'
7
+ // set false due to causing severe conflicts with redux-devtools.
8
+ devTools: false // process.env['NODE-ENV'] !== 'production'
8
9
  })
9
10
 
10
11
  store.addReducers({
@@ -149,10 +149,8 @@ text-transform: uppercase;
149
149
  - lit-html
150
150
  - VS Code Configuration
151
151
  - Format on save: true
152
- - nodejs (v8.0.0 and above)
152
+ - nodejs (v20.0.0 and above)
153
153
  - yarn
154
- - Chrome Browser Extension
155
- - https://github.com/zalmoxisus/redux-devtools-extension
156
154
  - Node-gyp (For Ubuntu)
157
155
  - npm install -g node-gyp
158
156
  - Python2 (For Ubuntu)
@@ -152,10 +152,8 @@ text-transform: uppercase;
152
152
  - lit-html
153
153
  - VS Code Configuration
154
154
  - Format on save: true
155
- - nodejs (v8.0.0 and above)
155
+ - nodejs (v20.0.0 and above)
156
156
  - yarn
157
- - Chrome Browser Extension
158
- - https://github.com/zalmoxisus/redux-devtools-extension
159
157
  - Node-gyp (For Ubuntu)
160
158
  - npm install -g node-gyp
161
159
  - Python2 (For Ubuntu)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/shell",
3
- "version": "7.0.74",
3
+ "version": "7.0.75",
4
4
  "description": "Core module for framework",
5
5
  "bin": {
6
6
  "things-factory": "bin/things-factory",
@@ -133,5 +133,5 @@
133
133
  "pg": "^8.7.3",
134
134
  "sqlite3": "^5.0.8"
135
135
  },
136
- "gitHead": "2f3de6036ddd5ef4a5c877ee537b28edbe08f038"
136
+ "gitHead": "1a6808f94d6c222f4e50ffc3317d9c320358ed20"
137
137
  }