fhdp-fh-starter 4.10.401 → 4.10.901

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,15 +1,23 @@
1
1
  {
2
2
  "name": "fhdp-fh-starter",
3
- "version": "4.10.401",
4
- "author": {
5
- "name": "Jakub Kosecki",
6
- "email": "j.kosecki@doittechnology.pl"
7
- },
3
+ "version": "4.10.901",
4
+ "author": "AssecoPL",
5
+ "contributors": [
6
+ {
7
+ "name": "Jacek Borowiec",
8
+ "email": "jacek.borowiec@asseco.pl"
9
+ },
10
+ {
11
+ "name": "Paweł Domański",
12
+ "email": "pawel.domanski@asseco.pl"
13
+ }
14
+ ],
15
+ "license": "Apache License 2.0",
8
16
  "description": "Configurable starter for asseco/fh",
9
17
  "main": "dist/Module.js",
10
18
  "types": "dist/Module.d.ts",
11
19
  "scripts": {
12
- "prepublish": "node prepublish",
20
+ "prepublishOnly": "node prepublish",
13
21
  "postpublish": "node postpublish",
14
22
  "build": "tsc",
15
23
  "docgen": "npx typedoc ./FhApplication.ts",
@@ -20,14 +28,15 @@
20
28
  "@types/bootstrap": "4.3.1",
21
29
  "@types/jquery": "3.3.31",
22
30
  "@types/node": "14.14.36",
23
- "typedoc": "^0.20.20",
24
- "typescript": "3.9"
31
+ "@types/jqueryui": "1.12.10",
32
+ "typedoc": "0.24.7",
33
+ "typescript": "5.0.4"
25
34
  },
26
35
  "dependencies": {
27
- "fh-basic-controls": "4.10.401",
28
- "fh-charts-controls": "4.10.401",
29
- "fh-forms-handler": "4.10.401",
30
- "fhdp-controls": "4.10.401",
31
- "fhdp-extenders": "4.10.401"
36
+ "fh-basic-controls": "4.10.901",
37
+ "fh-charts-controls": "4.10.901",
38
+ "fh-forms-handler": "4.10.901",
39
+ "fhdp-controls": "4.10.901",
40
+ "fhdp-extenders": "4.10.901"
32
41
  }
33
42
  }
package/postpublish.js CHANGED
@@ -1,15 +1,15 @@
1
- const fs = require('fs');
2
- const path = require('path');
3
- const ORIG_PKG_PATH = path.resolve(__dirname, 'package.json');
4
- const CACHED_PKG_PATH = path.resolve(__dirname, 'cached-package.json');
5
- const pkgData = JSON.stringify(require(CACHED_PKG_PATH), null, 2) + '\n';
6
-
7
- fs.writeFile(ORIG_PKG_PATH, pkgData, function (err) {
8
- if (err) throw err;
9
- });
10
-
11
- pkgData.main = 'Module.ts';
12
-
13
- fs.unlink(CACHED_PKG_PATH, function (err) {
14
- if (err) throw err;
15
- });
1
+ const fs = require('fs');
2
+ const path = require('path');
3
+ const ORIG_PKG_PATH = path.resolve(__dirname, 'package.json');
4
+ const CACHED_PKG_PATH = path.resolve(__dirname, 'cached-package.json');
5
+ const pkgData = JSON.stringify(require(CACHED_PKG_PATH), null, 2) + '\n';
6
+
7
+ fs.writeFile(ORIG_PKG_PATH, pkgData, function (err) {
8
+ if (err) throw err;
9
+ });
10
+
11
+ pkgData.main = 'Module.ts';
12
+
13
+ fs.unlink(CACHED_PKG_PATH, function (err) {
14
+ if (err) throw err;
15
+ });
package/prepublish.js CHANGED
@@ -1,15 +1,15 @@
1
- const fs = require('fs');
2
- const path = require('path');
3
- const ORIG_PKG_PATH = path.resolve(__dirname, 'package.json');
4
- const CACHED_PKG_PATH = path.resolve(__dirname, 'cached-package.json');
5
- const pkgData = require(ORIG_PKG_PATH);
6
-
7
- fs.writeFile(CACHED_PKG_PATH, JSON.stringify(pkgData), function (err) {
8
- if (err) throw err;
9
- });
10
-
11
- pkgData.main = 'dist/Module.js';
12
-
13
- fs.writeFile(ORIG_PKG_PATH, JSON.stringify(pkgData, null, 2), function (err) {
14
- if (err) throw err;
15
- });
1
+ const fs = require('fs');
2
+ const path = require('path');
3
+ const ORIG_PKG_PATH = path.resolve(__dirname, 'package.json');
4
+ const CACHED_PKG_PATH = path.resolve(__dirname, 'cached-package.json');
5
+ const pkgData = require(ORIG_PKG_PATH);
6
+
7
+ fs.writeFile(CACHED_PKG_PATH, JSON.stringify(pkgData), function (err) {
8
+ if (err) throw err;
9
+ });
10
+
11
+ pkgData.main = 'dist/Module.js';
12
+
13
+ fs.writeFile(ORIG_PKG_PATH, JSON.stringify(pkgData, null, 2), function (err) {
14
+ if (err) throw err;
15
+ });
package/tsconfig.json CHANGED
@@ -1,18 +1,18 @@
1
- {
2
- "compilerOptions": {
3
- "jsx": "react",
4
- "sourceMap": true,
5
- "target": "es5",
6
- "outDir": "dist",
7
- "lib": ["es6", "dom"],
8
- "types": ["reflect-metadata", "jquery", "jqueryui", "bootstrap", "node"],
9
- "module": "commonjs",
10
- "baseUrl": "types",
11
- "moduleResolution": "node",
12
- "declaration": true,
13
- "experimentalDecorators": true,
14
- "emitDecoratorMetadata": true,
15
- "resolveJsonModule": true,
16
- },
17
- "exclude": ["node_modules", "target", "dist"]
18
- }
1
+ {
2
+ "compilerOptions": {
3
+ "jsx": "react",
4
+ "sourceMap": true,
5
+ "target": "es5",
6
+ "outDir": "dist",
7
+ "lib": ["es6", "dom"],
8
+ "types": ["reflect-metadata", "jquery", "jqueryui", "bootstrap", "node"],
9
+ "module": "commonjs",
10
+ "baseUrl": "types",
11
+ "moduleResolution": "node",
12
+ "declaration": true,
13
+ "experimentalDecorators": true,
14
+ "emitDecoratorMetadata": true,
15
+ "resolveJsonModule": true,
16
+ },
17
+ "exclude": ["node_modules", "target", "dist"]
18
+ }