KEYCLOAK-6977: Stop using yarn for new admin console (#5181)

This commit is contained in:
Stan Silvert 2018-05-03 09:29:13 -04:00 committed by GitHub
parent 20f24bffc4
commit f3340b113f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 4901 additions and 3041 deletions

View file

@ -69,50 +69,49 @@
<artifactId>frontend-maven-plugin</artifactId>
<executions>
<execution>
<id>install node and yarn</id>
<id>install node and npm</id>
<goals>
<goal>install-node-and-yarn</goal>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<workingDirectory>src/main/resources/theme/keycloak-preview/account/resources</workingDirectory>
<nodeVersion>v6.9.1</nodeVersion>
<yarnVersion>v0.28.4</yarnVersion>
<nodeVersion>v8.9.4</nodeVersion>
</configuration>
</execution>
<execution>
<id>yarn install keycloak preview</id>
<id>npm install</id>
<goals>
<goal>yarn</goal>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>install --production=false --frozen-lockfile</arguments>
<workingDirectory>src/main/resources/theme/keycloak-preview/account/resources</workingDirectory>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>compile typescript</id>
<goals>
<goal>yarn</goal>
<goal>npm</goal>
</goals>
<phase>compile</phase>
<configuration>
<arguments>run build</arguments>
<workingDirectory>src/main/resources/theme/keycloak-preview/account/resources</workingDirectory>
</configuration>
</execution>
<execution>
<id>yarn remove dev dependencies production=true</id>
<id>npm remove dev dependencies production=true</id>
<goals>
<goal>yarn</goal>
<goal>npm</goal>
</goals>
<phase>process-classes</phase>
<configuration>
<arguments>install --production=true --frozen-lockfile</arguments>
<workingDirectory>src/main/resources/theme/keycloak-preview/account/resources</workingDirectory>
<arguments>install --production=true --no-package-lock</arguments>
</configuration>
</execution>
</executions>
<configuration>
<workingDirectory>src/main/resources/theme/keycloak-preview/account/resources</workingDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>

File diff suppressed because it is too large Load diff

View file

@ -24,19 +24,21 @@
"author": "Stan Silvert",
"license": "Apache 2.0",
"dependencies": {
"@angular/animations": "'5.0.0'",
"@angular/common": "'5.0.0'",
"@angular/compiler": "'5.0.0'",
"@angular/compiler-cli": "'5.0.0'",
"@angular/core": "'5.0.0'",
"@angular/forms": "'5.0.0'",
"@angular/http": "'5.0.0'",
"@angular/platform-browser": "'5.0.0'",
"@angular/platform-browser-dynamic": "'5.0.0'",
"@angular/platform-server": "'5.0.0'",
"@angular/router": "'5.0.0'",
"@angular/animations": "5.0.0",
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/compiler-cli": "5.0.0",
"@angular/core": "5.0.0",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"@angular/platform-server": "5.0.0",
"@angular/router": "5.0.0",
"@ngx-translate/core": "^9.1.1",
"bootstrap": "^4.1.0",
"core-js": "^2.4.1",
"jquery": "^3.3.1",
"patternfly": "^3.23.2",
"rxjs": "5.5.2",
"rxjs-system-bundle": "^5.5.6",

View file

@ -7,7 +7,7 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true
}
}