hoodcms 5.0.8 → 5.0.9

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/js/login.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * hoodcms v5.0.8
2
+ * hoodcms v5.0.9
3
3
  * A fully customisable content management system built in ASP.NET Core 5 & Bootstrap 5.
4
4
  * Written by George Whysall, 2021
5
5
  * Released under the GPL-3.0 License.
package/package.json CHANGED
@@ -1,7 +1,50 @@
1
1
  {
2
2
  "name": "hoodcms",
3
- "version": "5.0.8",
3
+ "version": "5.0.9",
4
4
  "description": "A fully customisable content management system built in ASP.NET Core 5 & Bootstrap 5.",
5
+ "keywords": [
6
+ "hood",
7
+ "hoodcms",
8
+ "visual-studio",
9
+ "netcore",
10
+ "net5.0",
11
+ "efcore",
12
+ "ef",
13
+ "dotnet",
14
+ "js",
15
+ "ts",
16
+ "scss"
17
+ ],
18
+ "homepage": "https://github.com/HoodDigital/Hood#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/HoodDigital/Hood/issues"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/HoodDigital/hoodcms.git"
25
+ },
26
+ "license": "GPL-3.0",
27
+ "author": "George Whysall",
28
+ "main": "./dist/js/index.js",
29
+ "types": "./dist/js/index.d.ts",
30
+ "scripts": {
31
+ "build": "npm-run-all scss tsc",
32
+ "build-production": "npm-run-all scss cssnano tsc tsc-production",
33
+ "clean": "gulp clean",
34
+ "copy": "gulp copy",
35
+ "cssnano": "gulp cssnano",
36
+ "package": "npm-run-all clean build-production copy views",
37
+ "scss": "gulp scss",
38
+ "scss-lint": "stylelint src/scss/ --fix",
39
+ "tsc": "tsc && npm-run-all tsc-rollup",
40
+ "tsc-production": "tsc --project tsconfig.production.json && npm-run-all tsc-rollup-production",
41
+ "tsc-recaptcha": "tsc --project tsconfig.recaptcha.json",
42
+ "tsc-rollup": "rollup --config --debug",
43
+ "tsc-rollup-production": "rollup --config",
44
+ "views": "gulp views",
45
+ "watch-scss": "npm-watch scss",
46
+ "watch-tsc": "npm-watch tsc"
47
+ },
5
48
  "dependencies": {
6
49
  "@popperjs/core": "^2.9.2",
7
50
  "@simonwep/pickr": "^1.8.0",
@@ -19,17 +62,16 @@
19
62
  "jquery-slimscroll": "^1.3.8",
20
63
  "jquery-toast-plugin": "^1.3.2",
21
64
  "jquery-validation": "^1.19.3",
22
- "node-sass-tilde-importer": "^1.0.2",
23
65
  "sweetalert2": "^11.0.18",
24
66
  "tinymce": "^5.8.0"
25
67
  },
26
68
  "devDependencies": {
27
- "@lopatnov/rollup-plugin-uglify": "^2.1.1",
69
+ "@lopatnov/rollup-plugin-uglify": "^2.1.2",
28
70
  "@rollup/plugin-commonjs": "^21.0.1",
29
- "@rollup/plugin-node-resolve": "^13.0.0",
30
- "@rollup/plugin-typescript": "^8.2.1",
31
- "cssnano": "5.0.11",
32
- "eslint": "^7.29.0",
71
+ "@rollup/plugin-node-resolve": "^13.0.6",
72
+ "@rollup/plugin-typescript": "^8.3.0",
73
+ "cssnano": "^5.0.11",
74
+ "eslint": "^8.3.0",
33
75
  "gulp": "^4.0.2",
34
76
  "gulp-autoprefixer": "^8.0.0",
35
77
  "gulp-concat": "^2.6.1",
@@ -40,33 +82,16 @@
40
82
  "gulp-rename": "^2.0.0",
41
83
  "gulp-rimraf": "^1.0.0",
42
84
  "gulp-sourcemaps": "^3.0.0",
85
+ "node-sass-tilde-importer": "^1.0.2",
43
86
  "npm-run-all": "^4.1.5",
44
- "npm-watch": "^0.10.0",
45
- "postcss": "^8.2.15",
46
- "rollup": "^2.51.2",
87
+ "npm-watch": "^0.11.0",
88
+ "postcss": "^8.4.4",
89
+ "rollup": "^2.60.1",
47
90
  "rollup-pluginutils": "^2.8.2",
48
- "sass": "^1.35.1",
49
- "stylelint": "^13.13.1",
50
- "terser": "^5.7.0",
51
- "typescript": "^4.3.4"
52
- },
53
- "scripts": {
54
- "build": "npm-run-all scss tsc",
55
- "build-production": "npm-run-all scss cssnano tsc tsc-production",
56
- "clean": "gulp clean",
57
- "copy": "gulp copy",
58
- "cssnano": "gulp cssnano",
59
- "package": "npm-run-all clean build-production copy views",
60
- "scss": "gulp scss",
61
- "scss-lint": "stylelint src/scss/ --fix",
62
- "tsc": "tsc && npm-run-all tsc-rollup",
63
- "tsc-recaptcha": "tsc --project tsconfig.recaptcha.json",
64
- "tsc-production": "tsc --project tsconfig.production.json && npm-run-all tsc-rollup-production",
65
- "tsc-rollup": "rollup --config --debug",
66
- "tsc-rollup-production": "rollup --config",
67
- "views": "gulp views",
68
- "watch-scss": "npm-watch scss",
69
- "watch-tsc": "npm-watch tsc"
91
+ "sass": "^1.43.5",
92
+ "stylelint": "^14.1.0",
93
+ "terser": "^5.10.0",
94
+ "typescript": "^4.5.2"
70
95
  },
71
96
  "watch": {
72
97
  "scss": {
@@ -83,30 +108,5 @@
83
108
  "extensions": "ts",
84
109
  "quiet": false
85
110
  }
86
- },
87
- "types": "./dist/js/index.d.ts",
88
- "main": "./dist/js/index.js",
89
- "repository": {
90
- "type": "git",
91
- "url": "git+https://github.com/HoodDigital/hoodcms.git"
92
- },
93
- "keywords": [
94
- "hood",
95
- "hoodcms",
96
- "visual-studio",
97
- "netcore",
98
- "net5.0",
99
- "efcore",
100
- "ef",
101
- "dotnet",
102
- "js",
103
- "ts",
104
- "scss"
105
- ],
106
- "author": "George Whysall",
107
- "license": "GPL-3.0",
108
- "bugs": {
109
- "url": "https://github.com/HoodDigital/Hood/issues"
110
- },
111
- "homepage": "https://github.com/HoodDigital/Hood#readme"
111
+ }
112
112
  }