@things-factory/shell 7.0.74 → 7.0.76
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 (
|
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
|
-
|
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({
|
@@ -54,7 +54,7 @@ module.exports = {
|
|
54
54
|
'connect-src': ['*', 'data:'], // 'data:' should be removed after remove document component like excel from board
|
55
55
|
'font-src': ['*'],
|
56
56
|
'media-src': ['*', 'data:', 'blob:'],
|
57
|
-
'object-src': ['
|
57
|
+
'object-src': ['*'],
|
58
58
|
'frame-src': ['*'],
|
59
59
|
'child-src': ['*'],
|
60
60
|
'worker-src': ['*', 'blob:'],
|
@@ -56,7 +56,7 @@ module.exports = {
|
|
56
56
|
'connect-src': ['*', 'data:'], // 'data:' should be removed after remove document component like excel from board
|
57
57
|
'font-src': ['*'],
|
58
58
|
'media-src': ['*', 'data:', 'blob:'],
|
59
|
-
'object-src': ['
|
59
|
+
'object-src': ['*'],
|
60
60
|
'frame-src': ['*'],
|
61
61
|
'child-src': ['*'],
|
62
62
|
'worker-src': ['*', 'blob:'],
|
@@ -149,10 +149,8 @@ text-transform: uppercase;
|
|
149
149
|
- lit-html
|
150
150
|
- VS Code Configuration
|
151
151
|
- Format on save: true
|
152
|
-
- nodejs (
|
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 (
|
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.
|
3
|
+
"version": "7.0.76",
|
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": "
|
136
|
+
"gitHead": "297a1fea5be41c08d164f977444f221ee9ec901f"
|
137
137
|
}
|