@sap-ux/ui5-application-writer 0.19.2 → 0.20.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/package.json
CHANGED
|
@@ -1,14 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"root": true,
|
|
3
3
|
"plugins": [
|
|
4
|
-
|
|
4
|
+
"fiori-custom"
|
|
5
5
|
],
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
"overrides": [
|
|
7
|
+
{
|
|
8
|
+
"files": [
|
|
9
|
+
"**/*.*"
|
|
10
|
+
],
|
|
11
|
+
"excludedFiles": [
|
|
12
|
+
"test/**",
|
|
13
|
+
"target/**",
|
|
14
|
+
"webapp/test/**",
|
|
15
|
+
"webapp/localservice/**",
|
|
16
|
+
"backup/**",
|
|
17
|
+
"Gruntfile.js",
|
|
18
|
+
"changes_preview.js",
|
|
19
|
+
"gulpfile.js"
|
|
20
|
+
],
|
|
21
|
+
"plugins": [
|
|
22
|
+
"fiori-custom"
|
|
23
|
+
],
|
|
24
|
+
"extends": [
|
|
25
|
+
"eslint:recommended",
|
|
26
|
+
"plugin:fiori-custom/fioriToolsDefault"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"files": [
|
|
31
|
+
"webapp/test/**"
|
|
32
|
+
],
|
|
33
|
+
"plugins": [
|
|
34
|
+
"fiori-custom"
|
|
35
|
+
],
|
|
36
|
+
"extends": [
|
|
37
|
+
"plugin:fiori-custom/fioriToolsTestcode"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
13
40
|
]
|
|
14
|
-
}
|
|
41
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"scripts": {
|
|
3
|
-
"lint": "eslint ./
|
|
3
|
+
"lint": "eslint ./"
|
|
4
4
|
},
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"eslint": "7.32.0",
|
|
7
|
-
"eslint-plugin-fiori-custom": "2.
|
|
7
|
+
"eslint-plugin-fiori-custom": "2.6.7",
|
|
8
8
|
"@babel/eslint-parser": "7.14.7"
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
}
|
|
66
66
|
resolve(result);
|
|
67
67
|
})
|
|
68
|
-
.fail(function (
|
|
68
|
+
.fail(function () {
|
|
69
69
|
reject(new Error("Could not fetch manifest at '" + manifestPath));
|
|
70
70
|
});
|
|
71
71
|
});
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
};
|
|
132
132
|
})(sap);
|
|
133
133
|
|
|
134
|
-
/*eslint-disable sap-browser-api-warning, sap-no-dom-access*/
|
|
134
|
+
/*eslint-disable fiori-custom/sap-browser-api-warning, fiori-custom/sap-no-dom-access*/
|
|
135
135
|
var currentScript = document.getElementById("locate-reuse-libs");
|
|
136
136
|
if (!currentScript) {
|
|
137
137
|
currentScript = document.currentScript;
|