@eui/cli 15.4.1 → 15.4.2
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/.version.properties +1 -1
- package/LICENSE +296 -296
- package/README.md +26 -26
- package/bin/eui-cli.js +70 -70
- package/lib/build.js +153 -153
- package/lib/cli.js +111 -111
- package/lib/config.js +54 -54
- package/lib/generators.js +64 -64
- package/lib/install.js +54 -54
- package/lib/maven-build/build.xml +115 -115
- package/lib/maven-build/pom.xml +64 -64
- package/lib/post-build.js +33 -33
- package/lib/skeletons/_angular/base/.browserslistrc +16 -16
- package/lib/skeletons/_angular/base/.editorconfig +16 -16
- package/lib/skeletons/_angular/base/.euirc.json +8 -8
- package/lib/skeletons/_angular/base/.stylelintrc +24 -24
- package/lib/skeletons/_angular/base/README.md +26 -26
- package/lib/skeletons/_angular/base/angular.json +176 -176
- package/lib/skeletons/_angular/base/gitignore_TO_REPLACE +50 -50
- package/lib/skeletons/_angular/base/mock/app/models/user.js +8 -8
- package/lib/skeletons/_angular/base/mock/app/routes/index.js +5 -5
- package/lib/skeletons/_angular/base/mock/app/routes/user_routes.js +24 -24
- package/lib/skeletons/_angular/base/mock/db/db.json +12 -12
- package/lib/skeletons/_angular/base/mock/server.js +21 -21
- package/lib/skeletons/_angular/base/package.json +24 -24
- package/lib/skeletons/_angular/base/proxy-mock.conf.json +6 -6
- package/lib/skeletons/_angular/base/proxy.conf.json +6 -6
- package/lib/skeletons/_angular/base/src/.eslintrc.json +118 -118
- package/lib/skeletons/_angular/base/src/app/app-routing.module.ts +17 -17
- package/lib/skeletons/_angular/base/src/app/app-starter.service.ts +66 -66
- package/lib/skeletons/_angular/base/src/app/app.component.html +29 -29
- package/lib/skeletons/_angular/base/src/app/app.component.ts +51 -51
- package/lib/skeletons/_angular/base/src/app/app.module.ts +35 -35
- package/lib/skeletons/_angular/base/src/app/core/core.module.ts +87 -87
- package/lib/skeletons/_angular/base/src/app/core/reducers/index.ts +31 -31
- package/lib/skeletons/_angular/base/src/app/features/home/home-routing.module.ts +15 -15
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.html +39 -39
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.ts +11 -11
- package/lib/skeletons/_angular/base/src/app/features/home/home.module.ts +18 -18
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.html +7 -7
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.ts +7 -7
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.html +7 -7
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.ts +7 -7
- package/lib/skeletons/_angular/base/src/app/features/module1/module1-routing.module.ts +18 -18
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.html +7 -7
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.ts +8 -8
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.module.ts +21 -21
- package/lib/skeletons/_angular/base/src/app/features/module2/module2-routing.module.ts +16 -16
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.html +7 -7
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.ts +7 -7
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.module.ts +17 -17
- package/lib/skeletons/_angular/base/src/app/shared/shared.module.ts +45 -45
- package/lib/skeletons/_angular/base/src/app/shared/testing/router.mock.ts +18 -18
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config-dev.json +8 -8
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config-prod.json +8 -8
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config.json +7 -7
- package/lib/skeletons/_angular/base/src/assets/i18n/en.json +6 -6
- package/lib/skeletons/_angular/base/src/assets/i18n/fr.json +6 -6
- package/lib/skeletons/_angular/base/src/config/global.ts +20 -20
- package/lib/skeletons/_angular/base/src/config/index.ts +8 -8
- package/lib/skeletons/_angular/base/src/config/modules.ts +7 -7
- package/lib/skeletons/_angular/base/src/dummy.spec.ts +6 -6
- package/lib/skeletons/_angular/base/src/environments/environment.prod.ts +11 -11
- package/lib/skeletons/_angular/base/src/environments/environment.ts +11 -11
- package/lib/skeletons/_angular/base/src/index.html +21 -21
- package/lib/skeletons/_angular/base/src/karma.conf.js +7 -7
- package/lib/skeletons/_angular/base/src/main.ts +14 -14
- package/lib/skeletons/_angular/base/src/polyfills.ts +89 -89
- package/lib/skeletons/_angular/base/src/styles.scss +1 -1
- package/lib/skeletons/_angular/base/src/tsconfig.app.json +18 -18
- package/lib/skeletons/_angular/base/src/tsconfig.spec.json +14 -14
- package/lib/skeletons/_angular/base/tsconfig.json +27 -27
- package/lib/skeletons/_angular/base-mobile/angular.json +160 -160
- package/lib/skeletons/_angular/base-mobile/ionic.config.json +5 -5
- package/lib/skeletons/_angular/base-mobile/ngsw-config.json +33 -33
- package/lib/skeletons/_angular/base-mobile/package.json +28 -28
- package/lib/skeletons/_angular/base-mobile/src/app/app-routing.module.ts +17 -17
- package/lib/skeletons/_angular/base-mobile/src/app/app-starter.service.ts +73 -73
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.html +27 -27
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.ts +55 -55
- package/lib/skeletons/_angular/base-mobile/src/app/app.module.ts +44 -44
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +89 -89
- package/lib/skeletons/_angular/base-mobile/src/app/core/reducers/index.ts +31 -31
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home-routing.module.ts +15 -15
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.html +14 -14
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.ts +11 -11
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.module.ts +18 -18
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.html +11 -11
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.ts +7 -7
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.html +11 -11
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.ts +7 -7
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1-routing.module.ts +18 -18
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.html +15 -15
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.ts +17 -17
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.module.ts +21 -21
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2-routing.module.ts +16 -16
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.html +11 -11
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.ts +7 -7
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.module.ts +17 -17
- package/lib/skeletons/_angular/base-mobile/src/app/shared/shared.module.ts +16 -16
- package/lib/skeletons/_angular/base-mobile/src/app/shared/testing/router.mock.ts +18 -18
- package/lib/skeletons/_angular/base-mobile/src/index.html +27 -27
- package/lib/skeletons/_angular/base-mobile/src/manifest.webmanifest +51 -51
- package/lib/skeletons/_angular/base-mobile/src/tsconfig.app.json +19 -19
- package/lib/skeletons/_angular/options/ecl/angular.json +193 -193
- package/lib/skeletons/_angular/options/ecl/src/app/app.component.html +262 -262
- package/lib/skeletons/_angular/options/ecl/src/app/app.component.ts +59 -59
- package/lib/skeletons/_angular/options/ecl/src/app/features/home/home.component.html +70 -70
- package/lib/skeletons/_angular/options/ecl/src/app/features/module1/components/page1/page1.component.html +1 -1
- package/lib/skeletons/_angular/options/ecl/src/app/features/module1/components/page2/page2.component.html +1 -1
- package/lib/skeletons/_angular/options/ecl/src/app/features/module1/module1.component.html +1 -1
- package/lib/skeletons/_angular/options/ecl/src/app/features/module2/module2.component.html +1 -1
- package/lib/skeletons/_angular/options/ecl/src/app/shared/shared.module.ts +19 -19
- package/lib/skeletons/_angular/options/ecl/src/config/global.ts +20 -20
- package/lib/skeletons/_angular/options/openid-jwt/package.json +22 -22
- package/lib/skeletons/_angular/options/openid-jwt/src/app/core/core.module.ts +94 -94
- package/lib/skeletons/_angular/options/openid-jwt/src/assets/config/env-json-config-dev.json +24 -24
- package/lib/skeletons/_angular/options/openid-jwt/src/assets/config/env-json-config-local-mock.json +10 -10
- package/lib/skeletons/_angular/options/openid-jwt/src/assets/config/env-json-config-local.json +23 -23
- package/lib/skeletons/_angular/options/openid-jwt/src/assets/config/env-json-config-prod.json +23 -23
- package/lib/skeletons/_angular/options/openid-jwt/src/assets/config/env-json-config.json +10 -10
- package/lib/skeletons/_angular/options/openid-jwt/src/environments/environment.prod.ts +11 -11
- package/lib/skeletons/_angular/options/openid-jwt/src/environments/environment.ts +11 -11
- package/lib/skeletons/_angular/options/openid-jwt/src/index.html +21 -21
- package/lib/skeletons/web-maven/package.json +17 -17
- package/lib/skeletons/web-maven/pom.xml +55 -55
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/servlet/SpringWebApplicationInitializer.java +22 -22
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/SpringRestConfiguration.java +24 -24
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/rest/UserDetailsResource.java +23 -23
- package/lib/skeletons/web-maven/src/main/resources/ecas-config-application-name.xml +7 -7
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/dispatcher-servlet.xml +10 -10
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/web.xml +38 -38
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/weblogic.xml +15 -15
- package/lib/skeletons/web-maven/src/main/webapp/index.jsp +29 -29
- package/lib/skeletons/web-spring-boot/myapp-web/pom.xml +77 -77
- package/lib/skeletons/web-spring-boot/myapp-web-rest/pom.xml +84 -84
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/MyappApplication.java +46 -46
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Address.java +65 -65
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Building.java +44 -44
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/repositories/BuildingRepository.java +10 -10
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/BuildingResource.java +26 -26
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/SwaggerConfig.java +20 -20
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HateoasPageableHandlerMethodArgumentResolver.java +45 -45
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HypermediaSupport.java +25 -25
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/PageJsonSerializer.java +17 -17
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CachingPreventionFilter.java +29 -29
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CsrfPreventionFilter.java +35 -35
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/FakeAuthenticationFilter.java +372 -372
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/SecurityConfig.java +47 -47
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingSearchCriteria.java +25 -25
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingService.java +9 -9
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingServiceImpl.java +25 -25
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/resources/data.sql +10 -10
- package/lib/skeletons/web-spring-boot/pom.xml +30 -30
- package/lib/skeletons/web-symfony/myapp-web/angular.json +170 -170
- package/lib/skeletons/web-symfony/myapp-web/package.json +23 -23
- package/lib/skeletons/web-symfony/myapp-web/src/app/app-routing.module.ts +18 -18
- package/lib/skeletons/web-symfony/myapp-web/src/app/app.component.ts +77 -77
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.html +160 -160
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/components/products.component.ts +104 -104
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/models/product.model.ts +6 -6
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/products-routing.module.ts +16 -16
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/products.module.ts +16 -16
- package/lib/skeletons/web-symfony/myapp-web/src/app/features/products/services/products.service.ts +29 -29
- package/lib/skeletons/web-symfony/myapp-web/src/environments/environment.ts +17 -17
- package/lib/skeletons/web-symfony/myapp-web-rest/.env +28 -28
- package/lib/skeletons/web-symfony/myapp-web-rest/bin/console +42 -42
- package/lib/skeletons/web-symfony/myapp-web-rest/composer.json +67 -67
- package/lib/skeletons/web-symfony/myapp-web-rest/composer.lock +3572 -3572
- package/lib/skeletons/web-symfony/myapp-web-rest/config/bootstrap.php +21 -21
- package/lib/skeletons/web-symfony/myapp-web-rest/config/bundles.php +12 -12
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/cache.yaml +19 -19
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/dev/routing.yaml +3 -3
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/doctrine.yaml +29 -29
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/doctrine_migrations.yaml +5 -5
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/framework.yaml +17 -17
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/prod/doctrine.yaml +32 -32
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/routing.yaml +4 -4
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/sensio_framework_extra.yaml +3 -3
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/test/framework.yaml +4 -4
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/test/routing.yaml +3 -3
- package/lib/skeletons/web-symfony/myapp-web-rest/config/packages/twig.yaml +4 -4
- package/lib/skeletons/web-symfony/myapp-web-rest/config/routes/annotations.yaml +3 -3
- package/lib/skeletons/web-symfony/myapp-web-rest/config/routes/dev/twig.yaml +3 -3
- package/lib/skeletons/web-symfony/myapp-web-rest/config/routes.yaml +3 -3
- package/lib/skeletons/web-symfony/myapp-web-rest/config/services.yaml +27 -27
- package/lib/skeletons/web-symfony/myapp-web-rest/public/index.php +27 -27
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Controller/ProductController.php +196 -196
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Entity/Product.php +99 -99
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Kernel.php +53 -53
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Migrations/Version20190604101623.php +31 -31
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Migrations/Version20190604101638.php +35 -35
- package/lib/skeletons/web-symfony/myapp-web-rest/src/Repository/ProductRepository.php +51 -51
- package/lib/skeletons/web-symfony/myapp-web-rest/symfony.lock +274 -274
- package/lib/skeletons/web-symfony/myapp-web-rest/templates/base.html.twig +12 -12
- package/lib/skeletons/web-symfony/myapp-web-rest/templates/product/index.html.twig +20 -20
- package/lib/utils.js +17 -17
- package/package.json +3 -3
package/lib/maven-build/pom.xml
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
2
|
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
3
|
-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
|
4
|
-
http://maven.apache.org/maven-v4_0_0.xsd">
|
|
5
|
-
|
|
6
|
-
<modelVersion>4.0.0</modelVersion>
|
|
7
|
-
<groupId>eu.europa.ec.digit.eui</groupId>
|
|
8
|
-
<artifactId>eui-cli-build</artifactId>
|
|
9
|
-
<version>0.1.0</version>
|
|
10
|
-
<packaging>pom</packaging>
|
|
11
|
-
|
|
12
|
-
<name>eUI CLI app generator</name>
|
|
13
|
-
|
|
14
|
-
<properties>
|
|
15
|
-
<src.path></src.path>
|
|
16
|
-
<target.path></target.path>
|
|
17
|
-
<app.group.id></app.group.id>
|
|
18
|
-
<app.artifact.id></app.artifact.id>
|
|
19
|
-
</properties>
|
|
20
|
-
|
|
21
|
-
<profiles>
|
|
22
|
-
<profile>
|
|
23
|
-
<id>build-web-spring-boot</id>
|
|
24
|
-
<build>
|
|
25
|
-
<plugins>
|
|
26
|
-
<plugin>
|
|
27
|
-
<groupId>org.apache.maven.plugins</groupId>
|
|
28
|
-
<artifactId>maven-antrun-plugin</artifactId>
|
|
29
|
-
<version>1.7</version>
|
|
30
|
-
<executions>
|
|
31
|
-
<execution>
|
|
32
|
-
<id>pre-install</id>
|
|
33
|
-
<phase>generate-sources</phase>
|
|
34
|
-
<configuration>
|
|
35
|
-
|
|
36
|
-
<target>
|
|
37
|
-
<ant dir="${basedir}" target="generate.web-spring-boot">
|
|
38
|
-
<property name="src.path" value="${src.path}"/>
|
|
39
|
-
<property name="target.path" value="${target.path}"/>
|
|
40
|
-
<property name="app.group.id" value="${app.group.id}"/>
|
|
41
|
-
<property name="app.artifact.id" value="${app.artifact.id}"/>
|
|
42
|
-
<property name="app.name" value="${app.artifact.id}"/>
|
|
43
|
-
</ant>
|
|
44
|
-
</target>
|
|
45
|
-
|
|
46
|
-
</configuration>
|
|
47
|
-
<goals>
|
|
48
|
-
<goal>run</goal>
|
|
49
|
-
</goals>
|
|
50
|
-
</execution>
|
|
51
|
-
</executions>
|
|
52
|
-
</plugin>
|
|
53
|
-
|
|
54
|
-
</plugins>
|
|
55
|
-
|
|
56
|
-
</build>
|
|
57
|
-
</profile>
|
|
58
|
-
</profiles>
|
|
59
|
-
|
|
60
|
-
</project>
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
1
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
2
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
3
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
|
4
|
+
http://maven.apache.org/maven-v4_0_0.xsd">
|
|
5
|
+
|
|
6
|
+
<modelVersion>4.0.0</modelVersion>
|
|
7
|
+
<groupId>eu.europa.ec.digit.eui</groupId>
|
|
8
|
+
<artifactId>eui-cli-build</artifactId>
|
|
9
|
+
<version>0.1.0</version>
|
|
10
|
+
<packaging>pom</packaging>
|
|
11
|
+
|
|
12
|
+
<name>eUI CLI app generator</name>
|
|
13
|
+
|
|
14
|
+
<properties>
|
|
15
|
+
<src.path></src.path>
|
|
16
|
+
<target.path></target.path>
|
|
17
|
+
<app.group.id></app.group.id>
|
|
18
|
+
<app.artifact.id></app.artifact.id>
|
|
19
|
+
</properties>
|
|
20
|
+
|
|
21
|
+
<profiles>
|
|
22
|
+
<profile>
|
|
23
|
+
<id>build-web-spring-boot</id>
|
|
24
|
+
<build>
|
|
25
|
+
<plugins>
|
|
26
|
+
<plugin>
|
|
27
|
+
<groupId>org.apache.maven.plugins</groupId>
|
|
28
|
+
<artifactId>maven-antrun-plugin</artifactId>
|
|
29
|
+
<version>1.7</version>
|
|
30
|
+
<executions>
|
|
31
|
+
<execution>
|
|
32
|
+
<id>pre-install</id>
|
|
33
|
+
<phase>generate-sources</phase>
|
|
34
|
+
<configuration>
|
|
35
|
+
|
|
36
|
+
<target>
|
|
37
|
+
<ant dir="${basedir}" target="generate.web-spring-boot">
|
|
38
|
+
<property name="src.path" value="${src.path}"/>
|
|
39
|
+
<property name="target.path" value="${target.path}"/>
|
|
40
|
+
<property name="app.group.id" value="${app.group.id}"/>
|
|
41
|
+
<property name="app.artifact.id" value="${app.artifact.id}"/>
|
|
42
|
+
<property name="app.name" value="${app.artifact.id}"/>
|
|
43
|
+
</ant>
|
|
44
|
+
</target>
|
|
45
|
+
|
|
46
|
+
</configuration>
|
|
47
|
+
<goals>
|
|
48
|
+
<goal>run</goal>
|
|
49
|
+
</goals>
|
|
50
|
+
</execution>
|
|
51
|
+
</executions>
|
|
52
|
+
</plugin>
|
|
53
|
+
|
|
54
|
+
</plugins>
|
|
55
|
+
|
|
56
|
+
</build>
|
|
57
|
+
</profile>
|
|
58
|
+
</profiles>
|
|
59
|
+
|
|
60
|
+
</project>
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
package/lib/post-build.js
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
const path = require('path');
|
|
2
|
-
const tools = require('@eui/tools/scripts/utils/tools');
|
|
3
|
-
|
|
4
|
-
const utils = require('./utils');
|
|
5
|
-
|
|
6
|
-
module.exports.start = (options) => {
|
|
7
|
-
return Promise.resolve()
|
|
8
|
-
.then(() => {
|
|
9
|
-
return postBuild(options.config, options.targetPath,)
|
|
10
|
-
})
|
|
11
|
-
.catch((e) => {
|
|
12
|
-
throw e;
|
|
13
|
-
})
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
const postBuild = (cliConfig, targetPath) => {
|
|
17
|
-
const appName = cliConfig.appName;
|
|
18
|
-
const appType = cliConfig.appType;
|
|
19
|
-
const artifactId = cliConfig.artifactId;
|
|
20
|
-
|
|
21
|
-
console.log(`Post build`);
|
|
22
|
-
|
|
23
|
-
return Promise.resolve()
|
|
24
|
-
.then(() => {
|
|
25
|
-
console.log('--renaming .gitignore');
|
|
26
|
-
const angularPath = utils.getAngularPath(targetPath, appName, appType, artifactId);
|
|
27
|
-
return tools.move(path.join(angularPath, 'gitignore_TO_REPLACE'), path.join(angularPath, '.gitignore'));
|
|
28
|
-
})
|
|
29
|
-
|
|
30
|
-
.catch((e) => {
|
|
31
|
-
throw e;
|
|
32
|
-
})
|
|
33
|
-
}
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const tools = require('@eui/tools/scripts/utils/tools');
|
|
3
|
+
|
|
4
|
+
const utils = require('./utils');
|
|
5
|
+
|
|
6
|
+
module.exports.start = (options) => {
|
|
7
|
+
return Promise.resolve()
|
|
8
|
+
.then(() => {
|
|
9
|
+
return postBuild(options.config, options.targetPath,)
|
|
10
|
+
})
|
|
11
|
+
.catch((e) => {
|
|
12
|
+
throw e;
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const postBuild = (cliConfig, targetPath) => {
|
|
17
|
+
const appName = cliConfig.appName;
|
|
18
|
+
const appType = cliConfig.appType;
|
|
19
|
+
const artifactId = cliConfig.artifactId;
|
|
20
|
+
|
|
21
|
+
console.log(`Post build`);
|
|
22
|
+
|
|
23
|
+
return Promise.resolve()
|
|
24
|
+
.then(() => {
|
|
25
|
+
console.log('--renaming .gitignore');
|
|
26
|
+
const angularPath = utils.getAngularPath(targetPath, appName, appType, artifactId);
|
|
27
|
+
return tools.move(path.join(angularPath, 'gitignore_TO_REPLACE'), path.join(angularPath, '.gitignore'));
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
.catch((e) => {
|
|
31
|
+
throw e;
|
|
32
|
+
})
|
|
33
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
|
|
2
|
-
# For additional information regarding the format and rule options, please see:
|
|
3
|
-
# https://github.com/browserslist/browserslist#queries
|
|
4
|
-
|
|
5
|
-
# For the full list of supported browsers by the Angular framework, please see:
|
|
6
|
-
# https://angular.io/guide/browser-support
|
|
7
|
-
|
|
8
|
-
# You can see what browsers were selected by your queries by running:
|
|
9
|
-
# npx browserslist
|
|
10
|
-
|
|
11
|
-
last 1 Chrome version
|
|
12
|
-
last 1 Firefox version
|
|
13
|
-
last 2 Edge major versions
|
|
14
|
-
last 2 Safari major versions
|
|
15
|
-
last 2 iOS major versions
|
|
16
|
-
Firefox ESR
|
|
1
|
+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
|
|
2
|
+
# For additional information regarding the format and rule options, please see:
|
|
3
|
+
# https://github.com/browserslist/browserslist#queries
|
|
4
|
+
|
|
5
|
+
# For the full list of supported browsers by the Angular framework, please see:
|
|
6
|
+
# https://angular.io/guide/browser-support
|
|
7
|
+
|
|
8
|
+
# You can see what browsers were selected by your queries by running:
|
|
9
|
+
# npx browserslist
|
|
10
|
+
|
|
11
|
+
last 1 Chrome version
|
|
12
|
+
last 1 Firefox version
|
|
13
|
+
last 2 Edge major versions
|
|
14
|
+
last 2 Safari major versions
|
|
15
|
+
last 2 iOS major versions
|
|
16
|
+
Firefox ESR
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
# Editor configuration, see http://editorconfig.org
|
|
2
|
-
root = true
|
|
3
|
-
|
|
4
|
-
[*]
|
|
5
|
-
charset = utf-8
|
|
6
|
-
indent_style = space
|
|
7
|
-
indent_size = 4
|
|
8
|
-
insert_final_newline = true
|
|
9
|
-
trim_trailing_whitespace = true
|
|
10
|
-
|
|
11
|
-
[*.scss]
|
|
12
|
-
indent_size = 4
|
|
13
|
-
|
|
14
|
-
[*.md]
|
|
15
|
-
max_line_length = off
|
|
16
|
-
trim_trailing_whitespace = false
|
|
1
|
+
# Editor configuration, see http://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
indent_style = space
|
|
7
|
+
indent_size = 4
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
|
|
11
|
+
[*.scss]
|
|
12
|
+
indent_size = 4
|
|
13
|
+
|
|
14
|
+
[*.md]
|
|
15
|
+
max_line_length = off
|
|
16
|
+
trim_trailing_whitespace = false
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"projects": {
|
|
3
|
-
"app": {
|
|
4
|
-
"name": "app",
|
|
5
|
-
"folder": "."
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"projects": {
|
|
3
|
+
"app": {
|
|
4
|
+
"name": "app",
|
|
5
|
+
"folder": "."
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends":"stylelint-config-standard",
|
|
3
|
-
"plugins": [
|
|
4
|
-
"stylelint-order",
|
|
5
|
-
"stylelint-scss"
|
|
6
|
-
],
|
|
7
|
-
"rules": {
|
|
8
|
-
"order/order": [
|
|
9
|
-
"custom-properties",
|
|
10
|
-
"declarations"
|
|
11
|
-
],
|
|
12
|
-
"order/properties-alphabetical-order": true,
|
|
13
|
-
|
|
14
|
-
"at-rule-empty-line-before": "never",
|
|
15
|
-
"no-descending-specificity": null,
|
|
16
|
-
"no-duplicate-selectors": null,
|
|
17
|
-
"font-family-no-missing-generic-family-keyword": null,
|
|
18
|
-
"indentation": 4,
|
|
19
|
-
"selector-type-no-unknown": null,
|
|
20
|
-
"at-rule-no-unknown": [true, {
|
|
21
|
-
ignoreAtRules: ['at-root', 'content', 'each', 'else', 'extend', 'for', 'function', 'if', 'include', 'mixin', 'return', 'warn', 'while']
|
|
22
|
-
}]
|
|
23
|
-
}
|
|
24
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"extends":"stylelint-config-standard",
|
|
3
|
+
"plugins": [
|
|
4
|
+
"stylelint-order",
|
|
5
|
+
"stylelint-scss"
|
|
6
|
+
],
|
|
7
|
+
"rules": {
|
|
8
|
+
"order/order": [
|
|
9
|
+
"custom-properties",
|
|
10
|
+
"declarations"
|
|
11
|
+
],
|
|
12
|
+
"order/properties-alphabetical-order": true,
|
|
13
|
+
|
|
14
|
+
"at-rule-empty-line-before": "never",
|
|
15
|
+
"no-descending-specificity": null,
|
|
16
|
+
"no-duplicate-selectors": null,
|
|
17
|
+
"font-family-no-missing-generic-family-keyword": null,
|
|
18
|
+
"indentation": 4,
|
|
19
|
+
"selector-type-no-unknown": null,
|
|
20
|
+
"at-rule-no-unknown": [true, {
|
|
21
|
+
ignoreAtRules: ['at-root', 'content', 'each', 'else', 'extend', 'for', 'function', 'if', 'include', 'mixin', 'return', 'warn', 'while']
|
|
22
|
+
}]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
# eUI starter app
|
|
2
|
-
|
|
3
|
-
## Development server
|
|
4
|
-
|
|
5
|
-
````npm start```` to start the angular project with node-express proxy mock server
|
|
6
|
-
|
|
7
|
-
````npm run start-proxy```` to start the angular project with real backend proxy server deployed
|
|
8
|
-
|
|
9
|
-
````npm run build```` to build, lint and test your project for DEV
|
|
10
|
-
|
|
11
|
-
````npm run build-prod```` to build, lint and test your project for PROD
|
|
12
|
-
|
|
13
|
-
````npm run build-prod-skip-test```` to build and lint your project for PROD - Unit test skipped - to be used on Bamboo plans
|
|
14
|
-
|
|
15
|
-
````npm run build-prod-stats```` to build, lint and test your project for PROD - with stats.json file generated for webpack-bundle-analyzer input
|
|
16
|
-
|
|
17
|
-
* check package.json for more info on executable scripts provided
|
|
18
|
-
|
|
19
|
-
## Further help
|
|
20
|
-
|
|
21
|
-
- https://eui.ecdevops.eu
|
|
22
|
-
|
|
23
|
-
- register on [MS Teams](https://teams.microsoft.com/l/team/19%3a2f5bb6b7d1e24c4aabaa62229d3e1955%40thread.tacv2/conversations?groupId=fb6def72-c57b-4e8f-a82e-49be65d6e1f5&tenantId=b24c8b06-522c-46fe-9080-70926f8dddb1) with your EC mail account, for extra-muros please send a mail to DIGIT-EUI-SUPPORT@ec.europa.eu
|
|
24
|
-
|
|
25
|
-
- For bugs / request new features : Drop us an email at : DIGIT-EUI-SUPPORT@ec.europa.eu
|
|
26
|
-
|
|
1
|
+
# eUI starter app
|
|
2
|
+
|
|
3
|
+
## Development server
|
|
4
|
+
|
|
5
|
+
````npm start```` to start the angular project with node-express proxy mock server
|
|
6
|
+
|
|
7
|
+
````npm run start-proxy```` to start the angular project with real backend proxy server deployed
|
|
8
|
+
|
|
9
|
+
````npm run build```` to build, lint and test your project for DEV
|
|
10
|
+
|
|
11
|
+
````npm run build-prod```` to build, lint and test your project for PROD
|
|
12
|
+
|
|
13
|
+
````npm run build-prod-skip-test```` to build and lint your project for PROD - Unit test skipped - to be used on Bamboo plans
|
|
14
|
+
|
|
15
|
+
````npm run build-prod-stats```` to build, lint and test your project for PROD - with stats.json file generated for webpack-bundle-analyzer input
|
|
16
|
+
|
|
17
|
+
* check package.json for more info on executable scripts provided
|
|
18
|
+
|
|
19
|
+
## Further help
|
|
20
|
+
|
|
21
|
+
- https://eui.ecdevops.eu
|
|
22
|
+
|
|
23
|
+
- register on [MS Teams](https://teams.microsoft.com/l/team/19%3a2f5bb6b7d1e24c4aabaa62229d3e1955%40thread.tacv2/conversations?groupId=fb6def72-c57b-4e8f-a82e-49be65d6e1f5&tenantId=b24c8b06-522c-46fe-9080-70926f8dddb1) with your EC mail account, for extra-muros please send a mail to DIGIT-EUI-SUPPORT@ec.europa.eu
|
|
24
|
+
|
|
25
|
+
- For bugs / request new features : Drop us an email at : DIGIT-EUI-SUPPORT@ec.europa.eu
|
|
26
|
+
|