Skip to content

Commit

Permalink
feat(*): update to angular 13
Browse files Browse the repository at this point in the history
BREAKING CHANGE: minimum version is now angular 13 because of update to ivy
  • Loading branch information
Nightapes committed Nov 12, 2021
1 parent 6fe6df6 commit ea36d39
Show file tree
Hide file tree
Showing 60 changed files with 8,313 additions and 6,911 deletions.
9 changes: 5 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# http://editorconfig.org

# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
insert_final_newline = false
max_line_length = off
trim_trailing_whitespace = false
24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@angular-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "_"
}
],
"@typescript-eslint/array-type": "error"
}
}
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Node 12
- name: Set up Node 14
uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "14.x"
id: node

- name: Check out code
Expand Down
88 changes: 40 additions & 48 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,54 +1,46 @@
#################
## Misc
#################
**/.DS_Store
nbproject
manifest.mf
build.xml
node_modules/*
npm-debug.log
coverage
*.js
!test-config.js
!karma.conf.js
!rollup.config.js
!karma-test-shim.js
*.map
*.d.ts
!make.js
!bundles/*.js
typings
# See http://help.github.com/ignore-files/ for more about ignoring files.

#################
## JetBrains
#################
.idea
.project
.settings
.idea/*
*.iml
# compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

############
## Windows
############
# dependencies
/node_modules

# Windows image file caches
Thumbs.db
# profiling files
chrome-profiler-events*.json

# Folder config file
Desktop.ini

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

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# Mac crap
# System Files
.DS_Store

### Custom

*.log
*.tgz
examples/node_modules/
dist/
coverage/
Thumbs.db
Loading

0 comments on commit ea36d39

Please sign in to comment.