generator-jhipster-yellowbricks 1.2.5 → 2.0.1
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/README.md +9 -1
- package/generators/app/generator.js +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -27,12 +27,20 @@
|
|
|
27
27
|
|
|
28
28
|
| Yellowbrick name | What it does |
|
|
29
29
|
| ------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------- |
|
|
30
|
-
| [generator-jhipster-yellowbricks-angular-contextpath](https://github.com/idNoRD/generator-jhipster-yellowbricks-angular-contextpath) | Sets `baseHref` in `angular.json`
|
|
30
|
+
| [generator-jhipster-yellowbricks-angular-contextpath](https://github.com/idNoRD/generator-jhipster-yellowbricks-angular-contextpath) | Sets `baseHref` in `angular.json` and `proxy.config.mjs` |
|
|
31
31
|
| [generator-jhipster-yellowbricks-spring-boot-contextpath](https://github.com/idNoRD/generator-jhipster-yellowbricks-spring-boot-contextpath) | Sets `context-path` in `application.yml` |
|
|
32
32
|
| [generator-jhipster-yellowbricks-client-contextpath](https://github.com/idNoRD/generator-jhipster-yellowbricks-client-contextpath) | Sets `<base href>` in `index.html` and `swagger-ui/index.html` |
|
|
33
33
|
| [generator-jhipster-yellowbricks-angular-relativepathresource](https://github.com/idNoRD/generator-jhipster-yellowbricks-angular-relativepathresource) | Makes logo URL relative in `navbar.scss` |
|
|
34
34
|
| [generator-jhipster-yellowbricks-client-relativepathresource](https://github.com/idNoRD/generator-jhipster-yellowbricks-client-relativepathresource) | Makes logo URL relative in `loading.css` |
|
|
35
35
|
|
|
36
|
+
## Waiting for your contribution
|
|
37
|
+
|
|
38
|
+
| Yellowbrick name | What it does |
|
|
39
|
+
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------- |
|
|
40
|
+
| generator-jhipster-yellowbricks-[cypress-contextpath](https://github.com/mshima/local-blueprints/blob/main/app/context-path.mjs#L96) | Sets `baseHref` for cypress |
|
|
41
|
+
| generator-jhipster-yellowbricks-vue-contextpath | Sets `baseHref` for vue |
|
|
42
|
+
| generator-jhipster-yellowbricks-vue-relativepathresource | Makes logo URL relative for vue |
|
|
43
|
+
|
|
36
44
|
## Prerequisites
|
|
37
45
|
|
|
38
46
|
- Node.js `^22.18.0 || >=24.11.0`
|
|
@@ -7,7 +7,7 @@ import stripJsonComments from 'strip-json-comments';
|
|
|
7
7
|
|
|
8
8
|
const require = createRequire(import.meta.url);
|
|
9
9
|
|
|
10
|
-
const REQUIRED_JHIPSTER_VERSION = '9.0.0
|
|
10
|
+
const REQUIRED_JHIPSTER_VERSION = '9.0.0';
|
|
11
11
|
|
|
12
12
|
const KNOWN_BRICKS = new Set([
|
|
13
13
|
'generator-jhipster-yellowbricks-angular-contextpath',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-jhipster-yellowbricks",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Yellowbricks main blueprint — orchestrates all yellowbricks in a single JHipster blueprint",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yeoman-generator",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"vitest": "vitest"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"generator-jhipster-yellowbricks-angular-contextpath": "^
|
|
37
|
-
"generator-jhipster-yellowbricks-angular-relativepathresource": "^
|
|
38
|
-
"generator-jhipster-yellowbricks-client-contextpath": "^
|
|
39
|
-
"generator-jhipster-yellowbricks-client-relativepathresource": "^
|
|
40
|
-
"generator-jhipster-yellowbricks-spring-boot-contextpath": "^
|
|
36
|
+
"generator-jhipster-yellowbricks-angular-contextpath": "^2.0.1",
|
|
37
|
+
"generator-jhipster-yellowbricks-angular-relativepathresource": "^2.0.1",
|
|
38
|
+
"generator-jhipster-yellowbricks-client-contextpath": "^2.0.1",
|
|
39
|
+
"generator-jhipster-yellowbricks-client-relativepathresource": "^2.0.1",
|
|
40
|
+
"generator-jhipster-yellowbricks-spring-boot-contextpath": "^2.0.1",
|
|
41
41
|
"strip-json-comments": "^5.0.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"eslint": "9.39.2",
|
|
51
51
|
"eslint-config-prettier": "10.1.8",
|
|
52
52
|
"eslint-plugin-prettier": "5.5.5",
|
|
53
|
-
"generator-jhipster": "9.0.0
|
|
53
|
+
"generator-jhipster": "9.0.0",
|
|
54
54
|
"globals": "17.3.0",
|
|
55
55
|
"husky": "9.1.7",
|
|
56
56
|
"jiti": "2.6.1",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"yeoman-test": ">=10"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|
|
65
|
-
"generator-jhipster": "9.0.0
|
|
65
|
+
"generator-jhipster": "9.0.0",
|
|
66
66
|
"node": "^22.18.0 || >=24.11.0"
|
|
67
67
|
}
|
|
68
68
|
}
|