@zimbra/zimlet-cli 15.1.0 → 16.0.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/.eslintrc.js +15 -0
- package/dist/cli.js +9 -10
- package/dist/commands/create.js +39 -75
- package/dist/commands/package.js +9 -40
- package/dist/entry.js +5 -7
- package/dist/index.js +65 -89
- package/dist/lib/async-command.js +2 -6
- package/dist/lib/setup.js +3 -12
- package/dist/lib/webpack/transform-config.js +0 -11
- package/dist/shims/@apollo/client/index.js +1 -3
- package/dist/shims/@apollo/client/react/components/index.js +1 -3
- package/dist/shims/@apollo/client/react/hoc/index.js +1 -3
- package/dist/shims/@apollo/client/react/index.js +1 -3
- package/dist/shims/@zimbra-client/blocks/index.js +1 -3
- package/dist/shims/@zimbra-client/browser/index.js +1 -3
- package/dist/shims/@zimbra-client/components/index.js +1 -3
- package/dist/shims/@zimbra-client/constants/index.js +1 -3
- package/dist/shims/@zimbra-client/enhancers/index.js +1 -3
- package/dist/shims/@zimbra-client/errors/index.js +1 -3
- package/dist/shims/@zimbra-client/graphql/index.js +1 -3
- package/dist/shims/@zimbra-client/hooks/graphql/index.js +1 -3
- package/dist/shims/@zimbra-client/hooks/index.js +1 -3
- package/dist/shims/@zimbra-client/platform/index.js +1 -3
- package/dist/shims/@zimbra-client/util/contacts/index.js +1 -3
- package/dist/shims/@zimbra-client/util/index.js +1 -3
- package/dist/shims/@zimbra-client/util/redux/index.js +1 -3
- package/dist/shims/dompurify/index.js +1 -3
- package/dist/shims/index.js +3 -4
- package/dist/shims/moment/index.js +1 -3
- package/dist/shims/preact/compat/index.js +71 -65
- package/dist/shims/preact/hooks/index.js +18 -18
- package/dist/shims/preact/index.js +17 -19
- package/dist/shims/preact/jsx-runtime/index.js +25 -0
- package/dist/shims/preact-context-provider/index.js +1 -5
- package/dist/shims/preact-i18n/index.js +1 -5
- package/dist/shims/preact-pwa-install/index.js +1 -4
- package/dist/shims/preact-render-to-string/index.js +1 -3
- package/dist/shims/preact-router/index.js +1 -3
- package/dist/shims/preact-router/match/index.js +1 -3
- package/dist/shims/react-redux/index.js +6 -10
- package/dist/shims/recompose/index.js +1 -3
- package/dist/shims/redux-actions/index.js +1 -3
- package/dist/util.js +0 -15
- package/dist/zimlet-style-loader.js +2 -11
- package/package-lock.json +3644 -7386
- package/package.json +42 -46
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zimbra/zimlet-cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.0.0",
|
|
4
4
|
"description": "Develop, Build, and Package Zimbra X compatible zimlets for development and production.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -47,75 +47,71 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@apollo/client": "^3.5.10",
|
|
50
|
-
"@babel/cli": "^7.
|
|
51
|
-
"@babel/
|
|
52
|
-
"dompurify": "^
|
|
53
|
-
"eslint": "^
|
|
50
|
+
"@babel/cli": "^7.21.0",
|
|
51
|
+
"@babel/eslint-parser": "^7.21.3",
|
|
52
|
+
"dompurify": "^3.0.2",
|
|
53
|
+
"eslint": "^8.38.0",
|
|
54
54
|
"eslint-config-synacor": "^3.0.5",
|
|
55
55
|
"graphql": "^15.8.0",
|
|
56
|
-
"husky": "^
|
|
56
|
+
"husky": "^8.0.3",
|
|
57
57
|
"is-ci": "^3.0.1",
|
|
58
|
-
"lint-staged": "^
|
|
59
|
-
"mkdirp": "^
|
|
58
|
+
"lint-staged": "^13.2.1",
|
|
59
|
+
"mkdirp": "^3.0.0",
|
|
60
60
|
"mockery": "^2.1.0",
|
|
61
|
-
"moment": "^2.29.
|
|
62
|
-
"preact": "^10.
|
|
61
|
+
"moment": "^2.29.4",
|
|
62
|
+
"preact": "^10.13.2",
|
|
63
63
|
"preact-context-provider": "^2.0.0-preactx.2",
|
|
64
64
|
"preact-i18n": "^2.4.0-preactx",
|
|
65
|
-
"preact-render-to-string": "^5.
|
|
65
|
+
"preact-render-to-string": "^5.2.0",
|
|
66
66
|
"preact-router": "github:zimbra/preact-router#3.1.1_base_path_support",
|
|
67
|
-
"react-redux": "^
|
|
67
|
+
"react-redux": "^8.0.5",
|
|
68
68
|
"recompose": "^0.30.0",
|
|
69
69
|
"redux-actions": "^2.6.5",
|
|
70
|
-
"rimraf": "^
|
|
70
|
+
"rimraf": "^5.0.0"
|
|
71
71
|
},
|
|
72
72
|
"license": "GPL-3.0",
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@babel/core": "^7.
|
|
75
|
-
"@babel/plugin-proposal-class-properties": "^7.
|
|
76
|
-
"@babel/plugin-proposal-decorators": "^7.
|
|
77
|
-
"@babel/plugin-proposal-export-default-from": "^7.
|
|
78
|
-
"@babel/plugin-proposal-export-namespace-from": "^7.
|
|
74
|
+
"@babel/core": "^7.21.4",
|
|
75
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
76
|
+
"@babel/plugin-proposal-decorators": "^7.21.0",
|
|
77
|
+
"@babel/plugin-proposal-export-default-from": "^7.18.10",
|
|
78
|
+
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
|
79
|
+
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
79
80
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
80
|
-
"@babel/plugin-transform-object-assign": "^7.
|
|
81
|
-
"@babel/plugin-transform-react-jsx": "^7.
|
|
81
|
+
"@babel/plugin-transform-object-assign": "^7.18.6",
|
|
82
|
+
"@babel/plugin-transform-react-jsx": "^7.21.0",
|
|
82
83
|
"@babel/polyfill": "^7.12.1",
|
|
83
|
-
"@babel/preset-env": "^7.
|
|
84
|
-
"@babel/register": "^7.
|
|
85
|
-
"@babel/runtime": "^7.
|
|
86
|
-
"adm-zip": "^0.5.
|
|
87
|
-
"babel-loader": "^
|
|
84
|
+
"@babel/preset-env": "^7.21.4",
|
|
85
|
+
"@babel/register": "^7.21.0",
|
|
86
|
+
"@babel/runtime": "^7.21.0",
|
|
87
|
+
"adm-zip": "^0.5.10",
|
|
88
|
+
"babel-loader": "^9.1.2",
|
|
88
89
|
"babel-plugin-add-module-exports": "^1.0.4",
|
|
89
90
|
"bundle-loader": "^0.5.6",
|
|
90
91
|
"chalk": "^4.1.2",
|
|
91
|
-
"copy-webpack-plugin": "^
|
|
92
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
92
93
|
"cors": "^2.8.5",
|
|
93
94
|
"cross-spawn-promise": "^0.10.2",
|
|
94
|
-
"css-loader": "^
|
|
95
|
-
"file-loader": "^6.2.0",
|
|
95
|
+
"css-loader": "^6.7.3",
|
|
96
96
|
"get-port": "^5.1.1",
|
|
97
97
|
"gittar": "^0.1.1",
|
|
98
|
-
"inquirer": "^8.2.
|
|
99
|
-
"ip": "^1.1.
|
|
100
|
-
"less": "^
|
|
101
|
-
"less-loader": "^
|
|
102
|
-
"loader-utils": "^2.0.2",
|
|
98
|
+
"inquirer": "^8.2.3",
|
|
99
|
+
"ip": "^1.1.8",
|
|
100
|
+
"less": "^4.1.3",
|
|
101
|
+
"less-loader": "^11.1.0",
|
|
103
102
|
"log-symbols": "^4.1.0",
|
|
104
103
|
"ora": "^5.4.1",
|
|
105
|
-
"postcss": "^8.4.
|
|
106
|
-
"postcss-discard-comments": "^
|
|
107
|
-
"postcss-loader": "^
|
|
108
|
-
"postcss-preset-env": "^
|
|
104
|
+
"postcss": "^8.4.23",
|
|
105
|
+
"postcss-discard-comments": "^6.0.0",
|
|
106
|
+
"postcss-loader": "^7.2.4",
|
|
107
|
+
"postcss-preset-env": "^8.3.2",
|
|
109
108
|
"progress-bar-webpack-plugin": "^2.1.0",
|
|
110
109
|
"raw-loader": "^4.0.2",
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"webpack-dev-server": "^3.11.3",
|
|
118
|
-
"which": "^2.0.2",
|
|
119
|
-
"yargs": "^17.3.1"
|
|
110
|
+
"validate-npm-package-name": "^5.0.0",
|
|
111
|
+
"webpack": "^5.80.0",
|
|
112
|
+
"webpack-cli": "^5.0.2",
|
|
113
|
+
"webpack-dev-server": "^4.13.3",
|
|
114
|
+
"which": "^3.0.0",
|
|
115
|
+
"yargs": "^17.7.1"
|
|
120
116
|
}
|
|
121
117
|
}
|