@eui/cli 14.0.30 → 14.0.31-snapshot-1698063744709

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.
@@ -1 +1 @@
1
- 14.0.30
1
+ 14.0.31-snapshot-1698063744709
package/lib/build.js CHANGED
@@ -168,6 +168,14 @@ const copyAngular = (targetPath, cliConfig, overwrite = true) => {
168
168
  }
169
169
  return Promise.resolve();
170
170
  })
171
+ .then(() => {
172
+ const allAvaiableOptionsCount = Object.keys(config.optionsPath).length - 1;
173
+ if (cliConfig.appOptions && cliConfig.appOptions.length === allAvaiableOptionsCount) {
174
+ tools.copydir(config.optionsPath["ecl-openid-jwt"], targetPath, true);
175
+ console.log('Applying options merge : ecl-openid-jwt');
176
+ }
177
+ return Promise.resolve();
178
+ })
171
179
  // .then(() => {
172
180
  // // module paths
173
181
  // let paths = '';
package/lib/config.js CHANGED
@@ -22,6 +22,7 @@ module.exports.webSymfonyPath = path.join(skeletonsPath, 'web-symfony');
22
22
  module.exports.optionsPath = {
23
23
  "openid-jwt": path.join(skeletonsPath, '_angular/options/openid-jwt'),
24
24
  "ecl": path.join(skeletonsPath, '_angular/options/ecl'),
25
+ "ecl-openid-jwt": path.join(skeletonsPath, '_angular/options/merged-ecl-openid-jwt'),
25
26
  };
26
27
  // module.exports.featuresPath = {
27
28
  // 'api-queue-service': {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.30",
3
+ "version": "14.0.31-snapshot-1698063744709",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "private": true,
22
22
  "dependencies": {
23
- "@eui/deps-base": "14.0.30"
23
+ "@eui/deps-base": "14.0.31-snapshot-1698063744709"
24
24
  },
25
25
  "resolutions": {
26
26
  "json5": ">=2.2.2",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.30",
3
+ "version": "14.0.31-snapshot-1698063744709",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "private": true,
22
22
  "dependencies": {
23
- "@eui/deps-base": "14.0.30",
23
+ "@eui/deps-base": "14.0.31-snapshot-1698063744709",
24
24
  "@eui/mobile-core": "14.2.0",
25
25
  "@eui/mobile-styles": "14.2.0",
26
26
  "@eui/ecl-core": "14.1.3"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-ecl-angular-app",
3
- "version": "14.0.30",
3
+ "version": "14.0.31-snapshot-1698063744709",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "private": true,
22
22
  "dependencies": {
23
- "@eui/deps-base": "14.0.30",
23
+ "@eui/deps-base": "14.0.31-snapshot-1698063744709",
24
24
  "@eui/ecl-core": "14.1.9",
25
25
  "@eui/ecl-styles": "14.1.9"
26
26
  }
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "eui-angular-app",
3
+ "version": "14.0.30",
4
+ "license": "EUPL-1.1",
5
+ "scripts": {
6
+ "ng": "ng",
7
+ "start-mock-server": "nodemon --watch ./mock ./mock/server.js",
8
+ "start-serve": "eui-scripts serve-app --openid --configuration=proxy-mock --configEnvTarget=local-mock",
9
+ "start": "npm-run-all --parallel start-mock-server start-serve",
10
+ "start-proxy": "eui-scripts serve-app --openid",
11
+ "start-openid": "eui-scripts serve-app --openid --configEnvTarget=local",
12
+ "build-dev": "eui-scripts build-app --configuration=development --configEnvTarget=dev",
13
+ "build-prod": "eui-scripts build-app --configuration=production-optimized --configEnvTarget=prod",
14
+ "build-prod-skip-test": "eui-scripts build-app --configuration=production-optimized --configEnvTarget=prod --skipTest",
15
+ "build-prod-stats": "eui-scripts build-app --configuration=production-optimized --configEnvTarget=prod --statsJson",
16
+ "build-prod-openid-dev": "eui-scripts build-app --configuration=production-optimized --openid --configEnvTarget=dev",
17
+ "build-prod-openid-prd": "eui-scripts build-app --configuration=production-optimized --openid --configEnvTarget=prod",
18
+ "app:build": "eui-scripts build-app",
19
+ "app:inject-config": "eui-scripts inject-config-app",
20
+ "generate-changelog": "eui-scripts generate-changelog"
21
+ },
22
+ "private": true,
23
+ "dependencies": {
24
+ "@eui/deps-base": "14.0.30",
25
+ "@eui/ecl-core": "14.1.9",
26
+ "@eui/ecl-styles": "14.1.9"
27
+ }
28
+ }
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.30",
3
+ "version": "14.0.31-snapshot-1698063744709",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
7
7
  "start-mock-server": "nodemon --watch ./mock ./mock/server.js",
8
- "start-serve": "eui-scripts serve-app --openid",
8
+ "start-serve": "eui-scripts serve-app --openid --configuration=proxy-mock --configEnvTarget=local-mock",
9
9
  "start": "npm-run-all --parallel start-mock-server start-serve",
10
10
  "start-proxy": "eui-scripts serve-app --openid",
11
11
  "start-openid": "eui-scripts serve-app --openid --configEnvTarget=local",
@@ -18,6 +18,6 @@
18
18
  },
19
19
  "private": true,
20
20
  "dependencies": {
21
- "@eui/deps-base": "14.0.30"
21
+ "@eui/deps-base": "14.0.31-snapshot-1698063744709"
22
22
  }
23
23
  }
@@ -4,7 +4,7 @@ import { StoreModule } from '@ngrx/store';
4
4
  import { EffectsModule } from '@ngrx/effects';
5
5
  import { StoreDevtoolsModule } from '@ngrx/store-devtools';
6
6
 
7
- import { HTTP_INTERCEPTORS } from '@angular/common/http';
7
+ import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
8
8
  import {
9
9
  CachePreventionInterceptor,
10
10
  CorsSecurityInterceptor,
@@ -26,6 +26,7 @@ import { SharedModule } from '../shared/shared.module';
26
26
 
27
27
  @NgModule({
28
28
  imports: [
29
+ HttpClientModule,
29
30
  SharedModule,
30
31
  EuiCoreModule.forRoot(),
31
32
  EffectsModule.forRoot([...CoreModuleEffects]),
@@ -46,7 +47,7 @@ import { SharedModule } from '../shared/shared.module';
46
47
  },
47
48
  {
48
49
  provide: EUI_CONFIG_TOKEN,
49
- useValue: { appConfig: appConfig, environment: environment }
50
+ useValue: { appConfig, environment }
50
51
  },
51
52
  {
52
53
  // Sets the withCredentials on Ajax Request to send the JSESSIONID cookie to another domain.
@@ -0,0 +1,10 @@
1
+ {
2
+ "openIdConnect": {
3
+ "enabled": false
4
+ },
5
+ "modules": {
6
+ "core": {
7
+ "userDetails": "/user-details"
8
+ }
9
+ }
10
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.30",
3
+ "version": "14.0.31-snapshot-1698063744709",
4
4
  "license": "EUPL-1.1",
5
5
  "description": "eUI JEE Symfony app scripts",
6
6
  "scripts": {
@@ -19,6 +19,6 @@
19
19
  },
20
20
  "private": true,
21
21
  "dependencies": {
22
- "@eui/deps-base": "14.0.30"
22
+ "@eui/deps-base": "14.0.31-snapshot-1698063744709"
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eui/cli",
3
- "version": "14.0.30",
4
- "tag": "prev",
3
+ "version": "14.0.31-snapshot-1698063744709",
4
+ "tag": "snapshot",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI CLI app generator",
7
7
  "bin": {
@@ -13,7 +13,7 @@
13
13
  "url": "https://citnet.tech.ec.europa.eu/CITnet/stash/projects/CSDR/repos/eui"
14
14
  },
15
15
  "dependencies": {
16
- "@eui/tools": "6.12.33"
16
+ "@eui/tools": "6.13.5"
17
17
  },
18
18
  "preferGlobal": true,
19
19
  "homepage": "https://eui.ecdevops.eu",