imatrix-ui 2.9.0-dw-tmp11 → 2.9.0-dw-tmp13
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/build/webpack.base.js +6 -6
- package/build/webpack.prod.js +1 -1
- package/lib/department-tree.js +7 -1
- package/lib/department-user-tree.js +7 -1
- package/lib/dynamic-source-select.js +7 -1
- package/lib/fs-preview.js +7 -1
- package/lib/fs-upload-list.js +7 -1
- package/lib/imatrix-ui.min.js +11 -5
- package/lib/inline-department-tree.js +7 -1
- package/lib/inline-department-user-tree.js +7 -1
- package/lib/inline-workgroup-tree.js +7 -1
- package/lib/inline-workgroup-user-treee.js +7 -1
- package/lib/multipart-upload.js +7 -1
- package/lib/organization-input.js +7 -1
- package/lib/rich-editor.js +7 -1
- package/lib/super-grid.js +8 -2
- package/lib/workflow-history-list.js +7 -1
- package/lib/workgroup-tree.js +7 -1
- package/lib/workgroup-user-tree.js +7 -1
- package/package.json +1 -1
package/build/webpack.base.js
CHANGED
|
@@ -150,12 +150,12 @@ module.exports = {
|
|
|
150
150
|
commonjs2: 'vuex',
|
|
151
151
|
amd: 'vuex'
|
|
152
152
|
},
|
|
153
|
-
'vue-i18n': {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
},
|
|
153
|
+
// 'vue-i18n': {
|
|
154
|
+
// root: 'VueI18n',
|
|
155
|
+
// commonjs: 'vue-i18n',
|
|
156
|
+
// commonjs2: 'vue-i18n',
|
|
157
|
+
// amd: 'vue-i18n'
|
|
158
|
+
// },
|
|
159
159
|
'js-cookie': {
|
|
160
160
|
root: 'JsCookie',
|
|
161
161
|
commonjs: 'js-cookie',
|
package/build/webpack.prod.js
CHANGED
|
@@ -10,7 +10,7 @@ module.exports = merge(webpackBaseConfig, {
|
|
|
10
10
|
devtool: 'nosources',
|
|
11
11
|
mode: "production",
|
|
12
12
|
entry: {
|
|
13
|
-
main: path.resolve(__dirname, '../
|
|
13
|
+
main: path.resolve(__dirname, '../src/index.js') // 将src下的index.js 作为入口点
|
|
14
14
|
},
|
|
15
15
|
output: {
|
|
16
16
|
path: path.resolve(__dirname, '../lib'),
|