Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ trim_trailing_whitespace = true

[*.ts]
quote_type = single
ij_typescript_use_double_quotes = false

[*.md]
max_line_length = off
Expand Down
48 changes: 0 additions & 48 deletions .eslintrc.json

This file was deleted.

45 changes: 23 additions & 22 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "."
schedule:
interval: "daily"
versioning-strategy: "widen"
groups:
npm:
patterns:
- "*"
exclude-patterns:
- "typescript"
- "zone.js"
- package-ecosystem: "github-actions"
directory: ".github/workflows"
schedule:
interval: "daily"
groups:
gha:
patterns:
- "*"

version: 2
updates:
- package-ecosystem: "npm"
directory: "."
schedule:
interval: "daily"
versioning-strategy: "widen"
groups:
npm:
patterns:
- "*"
exclude-patterns:
- "typescript"
- "zone.js"
- package-ecosystem: "github-actions"
directory: ".github/workflows"
schedule:
interval: "daily"
groups:
gha:
patterns:
- "*"
60 changes: 30 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
name: gha
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: windows-2022
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
- name: Use Node version defined in manifest
uses: volta-cli/action@v4.2.1
- name: Node.js version
run: node -v
- name: npm version
run: npm -v
- name: Install dependencies
run: npm i
- name: Check for linting errors
run: npm run lint
- name: Check for build errors
run: npm run bld
- name: Run test suite
run: npm test
name: gha

on:
pull_request:
branches: [main]

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
- name: Use Node version defined in manifest
uses: volta-cli/action@v4.2.1
- name: Node.js version
run: node -v
- name: npm version
run: npm -v
- name: Install dependencies
run: npm i
- name: Check for linting errors
run: npm run lint
- name: Check for build errors
run: npm run bld
# - name: Run test suite
# run: npm test
49 changes: 3 additions & 46 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,47 +1,4 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
node_modules

# Compiled output
/dist
/dist-ng
/dist-nw
/tmp
/out
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db

.nx/
out
.angular
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}
42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
}
55 changes: 0 additions & 55 deletions CODE_OF_CONDUCT.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

Loading