Skip to content

Commit

Permalink
update dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex authored and adexin-team committed Oct 8, 2021
1 parent fe93f0d commit 2c21bb2
Show file tree
Hide file tree
Showing 61 changed files with 10,064 additions and 10,885 deletions.
63 changes: 63 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,63 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/ng-cli-compat",
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"dot-notation": "error",
"id-denylist": [
"error",
"any",
"Number",
"number",
"String",
"string",
"Boolean",
"boolean",
"Undefined",
"undefined"
],
"indent": "error",
"no-empty-function": "off",
"no-shadow": "error",
"no-unused-expressions": "error",
"no-use-before-define": "off",
"semi": "error",
"quotes": ["error", "single", { "avoidEscape": true }],
"@angular-eslint/component-selector": [
"error",
{
"prefix": "sa",
"style": "kebab-case"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -46,3 +46,5 @@ testem.log
# System Files
.DS_Store
Thumbs.db

/projects/spinners-angular/coverage
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,5 +1,5 @@
language: node_js
node_js:
- 12.6
- 14.15
addons:
chrome: stable
15 changes: 11 additions & 4 deletions CHANGELOG.md
Expand Up @@ -3,18 +3,25 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
[unreleased]: https://github.com/adexin/spinners-angular/compare/v0.0.5...HEAD

## [0.0.5]
[0.0.5]: https://github.com/adexin/spinners-angular/compare/v0.0.4...v0.0.5

### Changed
- Migrated from tslint to eslint
- Migrated CI from travis.org to travis.com
- Updated dev and peer dependencies.

## [0.0.4]
[0.0.4]: https://github.com/adexin/spinners-angular/compare/v0.0.3...v0.0.4

### Changed
- Updated README.
- Downgraded typescript to make lib work in angular 8

## [0.0.3]
[0.0.3]: https://github.com/adexin/spinners-angular/releases/tag/v0.0.3

### Added
- Initial release.

[unreleased]: https://github.com/adexin/spinners-angular/compare/v0.0.4...HEAD
[0.0.4]: https://github.com/adexin/spinners-angular/releases/tag/v0.0.4
[0.0.3]: https://github.com/adexin/spinners-angular/releases/tag/v0.0.3
2 changes: 1 addition & 1 deletion README.md
@@ -1,5 +1,5 @@
# Spinners Angular
[![npm](https://img.shields.io/npm/v/spinners-angular.svg)](http://npm.im/spinners-angular) [![License](https://img.shields.io/github/license/adexin/spinners-angular.svg)](https://github.com/adexin/spinners-angular/blob/master/LICENSE.md) [![Build Status](https://img.shields.io/travis/adexin/spinners-angular/master.svg)](https://travis-ci.org/adexin/spinners-angular) [![Coverage Status](https://coveralls.io/repos/github/adexin/spinners-angular/badge.svg?branch=master)](https://coveralls.io/github/adexin/spinners-angular?branch=master) [![gzip size](http://img.badgesize.io/https://unpkg.com/spinners-angular/bundles/spinners-angular.umd.min.js?compression=gzip&label=gzip)](https://unpkg.com/spinners-angular/bundles/spinners-angular.umd.min.js)
[![npm](https://img.shields.io/npm/v/spinners-angular.svg)](http://npm.im/spinners-angular) [![License](https://img.shields.io/github/license/adexin/spinners-angular.svg)](https://github.com/adexin/spinners-angular/blob/master/LICENSE.md) [![Build Status](https://img.shields.io/travis/com/adexin/spinners-angular/master.svg)](https://travis-ci.com/github/adexin/spinners-angular) [![Coverage Status](https://coveralls.io/repos/github/adexin/spinners-angular/badge.svg?branch=master)](https://coveralls.io/github/adexin/spinners-angular?branch=master) [![gzip size](http://img.badgesize.io/https://unpkg.com/spinners-angular/bundles/spinners-angular.umd.min.js?compression=gzip&label=gzip)](https://unpkg.com/spinners-angular/bundles/spinners-angular.umd.min.js)


9 awesome spinners built as angular components. Server side rendering with Angular Universal, AOT, Ivy/NGCC and Angular Elements are supported.
Expand Down
27 changes: 12 additions & 15 deletions angular.json
Expand Up @@ -30,14 +30,11 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"projects/spinners-angular/tsconfig.lib.json",
"projects/spinners-angular/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
"lintFilePatterns": [
"projects/spinners-angular/**/*.ts",
"projects/spinners-angular/**/*.html"
]
}
}
Expand Down Expand Up @@ -132,19 +129,19 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"projects/elements/tsconfig.app.json",
"projects/elements/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
"lintFilePatterns": [
"projects/elements/**/*.ts",
"projects/elements/**/*.html"
]
}
}
}
}
},
"defaultProject": "spinners-angular"
"defaultProject": "spinners-angular",
"cli": {
"defaultCollection": "@angular-eslint/schematics"
}
}

0 comments on commit 2c21bb2

Please sign in to comment.