fix: fixes

This commit is contained in:
d.ezhov 2021-06-04 17:37:38 +03:00
parent 5930bda6b0
commit 8b629684bf
3 changed files with 25 additions and 17 deletions

View File

@ -6,6 +6,10 @@ This project was generated with [Angular CLI](https://github.com/angular/angular
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
## Create new package
Add new library with command `ng g lib lib-name`, then change name from `lib-name` to `@rbkmoney/lib-name` in `package.json`
## Code scaffolding
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

21
package-lock.json generated
View File

@ -11930,6 +11930,10 @@
"node": ">=8.17.0"
}
},
"node_modules/kek": {
"resolved": "projects/kek",
"link": true
},
"node_modules/killable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz",
@ -23108,6 +23112,7 @@
}
},
"projects/id-generator": {
"name": "@rbkmoney/id-generator",
"version": "0.0.1",
"dependencies": {
"short-uuid": "^4.2.0",
@ -23117,6 +23122,16 @@
"@angular/common": "^11.2.14",
"@angular/core": "^11.2.14"
}
},
"projects/kek": {
"version": "0.0.1",
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/common": "^11.2.14",
"@angular/core": "^11.2.14"
}
}
},
"dependencies": {
@ -33335,6 +33350,12 @@
}
}
},
"kek": {
"version": "file:projects/kek",
"requires": {
"tslib": "^2.0.0"
}
},
"killable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz",

View File

@ -1,17 +0,0 @@
{
"extends": "../../tslint.json",
"rules": {
"directive-selector": [
true,
"attribute",
"lib",
"camelCase"
],
"component-selector": [
true,
"element",
"lib",
"kebab-case"
]
}
}