@clickview/online 0.65.1-dev.1 → 0.66.0-rc.0
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/dist/907-app.js +1 -0
- package/dist/css/887-online-c797263ac2.chunk.css +1 -0
- package/dist/css/907-online-8c5b220bf6.chunk.css +1 -0
- package/dist/en.json +1 -0
- package/dist/online-app.css +164 -0
- package/dist/online-app.js +2 -0
- package/dist/online-app.js.LICENSE.txt +23 -0
- package/dist/styles-app.css +1 -0
- package/dist/styles-app.js +1 -0
- package/package.json +3 -7
- package/tooling/externals.js +56 -0
- package/typings/utils/imports.d.ts +1 -2
- package/dist/online/bundles.json +0 -4
- package/dist/online/en.json +0 -1
- package/dist/online/online-app.css +0 -9
- package/dist/online/online-app.js +0 -472
- package/dist/online/online-app.js.map +0 -1
- package/dist/styles/bundles.json +0 -4
- package/dist/styles/en.json +0 -1
- package/dist/styles/scripts/core-DfLwBfdK.js +0 -2
- package/dist/styles/scripts/core-DfLwBfdK.js.map +0 -1
- package/dist/styles/styles-app.css +0 -1
- package/vite.config.app.ts +0 -68
- package/vite.config.styles.ts +0 -8
- /package/{.eslintrc.cjs → .eslintrc.js} +0 -0
package/vite.config.app.ts
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import config from '../../libs/tooling/vite/vite.base.config';
|
|
2
|
-
|
|
3
|
-
const externalGlobals = {
|
|
4
|
-
// Cropper
|
|
5
|
-
'cropperjs': 'Cropper',
|
|
6
|
-
'cropper': 'Cropper',
|
|
7
|
-
|
|
8
|
-
// Shared Dependencies
|
|
9
|
-
'react-bootstrap': 'ReactBootstrap',
|
|
10
|
-
'reactbootstrap': 'ReactBootstrap',
|
|
11
|
-
'react-transition-group': 'ReactTransitionGroup',
|
|
12
|
-
'reacttransitiongroup': 'ReactTransitionGroup',
|
|
13
|
-
'react-intersection-observer': 'ReactIntersectionObserver',
|
|
14
|
-
'reactintersectionobserver': 'ReactIntersectionObserver',
|
|
15
|
-
'react-autosuggest': 'Autosuggest',
|
|
16
|
-
'autosuggest': 'Autosuggest',
|
|
17
|
-
'backbone-validation': 'Backbone.Validation',
|
|
18
|
-
'backbone.validation': 'Backbone.Validation',
|
|
19
|
-
'bloodhound': 'Bloodhound',
|
|
20
|
-
|
|
21
|
-
// Common Dependencies
|
|
22
|
-
'react': 'React',
|
|
23
|
-
'react-dom': 'ReactDOM',
|
|
24
|
-
'ReactDOM': 'ReactDOM',
|
|
25
|
-
'underscore': '_',
|
|
26
|
-
'_': '_',
|
|
27
|
-
'backbone': 'Backbone',
|
|
28
|
-
'backbone.marionette': 'Marionette',
|
|
29
|
-
'marionette': 'Marionette',
|
|
30
|
-
'handlebars': 'Handlebars',
|
|
31
|
-
'bootstrap': 'bootstrap',
|
|
32
|
-
'backbone.radio': 'Backbone.Radio',
|
|
33
|
-
'signalr': 'signalR',
|
|
34
|
-
'redux': 'Redux',
|
|
35
|
-
'react-redux': 'ReactRedux',
|
|
36
|
-
'reactredux': 'ReactRedux',
|
|
37
|
-
'dompurify': 'DOMPurify',
|
|
38
|
-
'jquery': '$',
|
|
39
|
-
'$': '$',
|
|
40
|
-
'node-polyglot': 'Polyglot',
|
|
41
|
-
'polyglot': 'Polyglot',
|
|
42
|
-
'moment': 'moment',
|
|
43
|
-
'linkifyjs': 'linkify',
|
|
44
|
-
'linkify': 'linkify',
|
|
45
|
-
'gapi': 'gapi'
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
export default config({
|
|
49
|
-
root: __dirname,
|
|
50
|
-
// Use a function for externals to ensure proper matching
|
|
51
|
-
externals: id => Object.keys(externalGlobals).includes(id),
|
|
52
|
-
globals: externalGlobals,
|
|
53
|
-
|
|
54
|
-
lib: {
|
|
55
|
-
entry: './src/index.ts',
|
|
56
|
-
name: '@clickview/online',
|
|
57
|
-
formats: ['umd']
|
|
58
|
-
},
|
|
59
|
-
|
|
60
|
-
outDir: 'dist/online',
|
|
61
|
-
outputScriptName: 'online-app.js',
|
|
62
|
-
outputCssName: 'online-app.css',
|
|
63
|
-
|
|
64
|
-
define: {
|
|
65
|
-
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV ?? 'development'),
|
|
66
|
-
'process.env': {}
|
|
67
|
-
}
|
|
68
|
-
});
|
package/vite.config.styles.ts
DELETED
|
File without changes
|