Commit f57688d3 authored by Cédric OLIVIER's avatar Cédric OLIVIER Committed by Pierre Smeyers
Browse files

Update to Angular 15

parent e6ca2473
Loading
Loading
Loading
Loading
+0 −0

File moved.

.eslintrc.json

0 → 100644
+46 −0
Original line number Diff line number Diff line
{
  "root": true,
  "ignorePatterns": [
    "projects/**/*"
  ],
  "overrides": [
    {
      "files": [
        "*.ts"
      ],
      "extends": [
        "eslint:recommended",
        "plugin:@typescript-eslint/recommended",
        "plugin:@angular-eslint/recommended",
        "plugin:@angular-eslint/template/process-inline-templates"
      ],
      "rules": {
        "@angular-eslint/directive-selector": [
          "error",
          {
            "type": "attribute",
            "prefix": "app",
            "style": "camelCase"
          }
        ],
        "@angular-eslint/component-selector": [
          "error",
          {
            "type": "element",
            "prefix": "app",
            "style": "kebab-case"
          }
        ]
      }
    },
    {
      "files": [
        "*.html"
      ],
      "extends": [
        "plugin:@angular-eslint/template/recommended"
      ],
      "rules": {}
    }
  ]
}
+1 −0
Original line number Diff line number Diff line
@@ -29,3 +29,4 @@
/node_modules/
/reports/
/.tmpl/
.angular/*
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ include:

variables:
  NG_CLI_IMAGE: trion/ng-cli-karma:14.2.6
  NG_BUILD_ARGS: "build --prod"
  NG_BUILD_ARGS: "build --configuration production"
  # deploy: landing page (static/), mkdocs build (public/), Angular build (kicker/dist/) and aggregated kicker (kicker-aggregated/)
  S3_DEPLOY_FILES: "dist/kicker/"
  S3_STAGING_DISABLED: "true"

.gitpod.yml

0 → 100644
+9 −0
Original line number Diff line number Diff line
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
# and commit this file to your remote git repository to share the goodness with others.

tasks:
  - init: npm install && npm run build
    command: npm run start

Loading