@raisenow/tamaro-cli 1.0.9 → 1.0.10
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/.eslintignore +1 -0
- package/.eslintrc.js +1 -0
- package/dist/cli.js +3 -1
- package/dist/webpack.config.js +6 -2
- package/package.json +3 -1
- package/src/webpack.config.ts +6 -2
package/.eslintignore
CHANGED
package/.eslintrc.js
CHANGED
package/dist/cli.js
CHANGED
|
@@ -23,7 +23,7 @@ var import_commander = require("commander");
|
|
|
23
23
|
|
|
24
24
|
// package.json
|
|
25
25
|
var name = "@raisenow/tamaro-cli";
|
|
26
|
-
var version = "1.0.
|
|
26
|
+
var version = "1.0.10";
|
|
27
27
|
var author = {
|
|
28
28
|
name: "RaiseNow",
|
|
29
29
|
email: "development@raisenow.com"
|
|
@@ -82,7 +82,9 @@ var dependencies = {
|
|
|
82
82
|
"element-closest": "^3.0.2",
|
|
83
83
|
"escape-string-regexp": "^4.0.0",
|
|
84
84
|
eslint: "^8.8.0",
|
|
85
|
+
"eslint-config-prettier": "^8.3.0",
|
|
85
86
|
"eslint-plugin-node": "^11.1.0",
|
|
87
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
86
88
|
"eslint-plugin-promise": "^6.0.0",
|
|
87
89
|
"eslint-webpack-plugin": "^3.1.0",
|
|
88
90
|
execa: "^5.1.1",
|
package/dist/webpack.config.js
CHANGED
|
@@ -553,8 +553,12 @@ var getWebpackConfig = async (env) => {
|
|
|
553
553
|
ifMin() && ifCore() ? new import_copy_webpack_plugin.default({
|
|
554
554
|
patterns: [
|
|
555
555
|
{
|
|
556
|
-
from: "
|
|
557
|
-
to: "
|
|
556
|
+
from: "readme.md",
|
|
557
|
+
to: "readme.md"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
from: "readme.html",
|
|
561
|
+
to: "readme.html"
|
|
558
562
|
}
|
|
559
563
|
]
|
|
560
564
|
}) : void 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raisenow/tamaro-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "RaiseNow",
|
|
6
6
|
"email": "development@raisenow.com"
|
|
@@ -59,7 +59,9 @@
|
|
|
59
59
|
"element-closest": "^3.0.2",
|
|
60
60
|
"escape-string-regexp": "^4.0.0",
|
|
61
61
|
"eslint": "^8.8.0",
|
|
62
|
+
"eslint-config-prettier": "^8.3.0",
|
|
62
63
|
"eslint-plugin-node": "^11.1.0",
|
|
64
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
63
65
|
"eslint-plugin-promise": "^6.0.0",
|
|
64
66
|
"eslint-webpack-plugin": "^3.1.0",
|
|
65
67
|
"execa": "^5.1.1",
|
package/src/webpack.config.ts
CHANGED
|
@@ -426,8 +426,12 @@ const getWebpackConfig = async (env: any): Promise<Configuration> => {
|
|
|
426
426
|
? new CopyPlugin({
|
|
427
427
|
patterns: [
|
|
428
428
|
{
|
|
429
|
-
from: '
|
|
430
|
-
to: '
|
|
429
|
+
from: 'readme.md',
|
|
430
|
+
to: 'readme.md',
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
from: 'readme.html',
|
|
434
|
+
to: 'readme.html',
|
|
431
435
|
},
|
|
432
436
|
],
|
|
433
437
|
})
|