Skip to content

Commit

Permalink
docs: improve generators + specify correct tslint version + generate …
Browse files Browse the repository at this point in the history
…docs
  • Loading branch information
manudss committed Feb 23, 2024
1 parent 0dcdf76 commit b745f41
Show file tree
Hide file tree
Showing 19 changed files with 527 additions and 916 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
if: success()
run: |
yarn run compile
yarn run compile:forDatasource
yarn run compile:datasource
yarn run build
cp README.md dist/akita-filters-plugin/README.md
cp LICENSE.md dist/akita-filters-plugin/LICENSE.md
- name: Semantic Release
Expand Down
10 changes: 3 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ testem.log
.DS_Store
Thumbs.db

/.angular
/docs
/.nx/cache/file-map.json
/.nx/cache/lockfile.hash
/.nx/cache/nx_files.nxt
/.nx/cache/parsed-lock-file.json
/.nx/cache/project-graph.json
.angular
docs
.nx
42 changes: 9 additions & 33 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/akita-filters-plugin-playground",
"outputPath": {
"base": "dist/akita-filters-plugin-playground"
},
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
Expand All @@ -35,12 +38,11 @@
"node_modules/prismjs/prism.js",
"node_modules/prismjs/components/prism-typescript.min.js"
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
"namedChunks": true,
"browser": "src/main.ts"
},
"configurations": {
"production": {
Expand All @@ -55,8 +57,6 @@
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
Expand Down Expand Up @@ -134,18 +134,6 @@
"projectType": "library",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/akita-filters-plugin/tsconfig.lib.json",
"project": "projects/akita-filters-plugin/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/akita-filters-plugin/tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
Expand All @@ -163,18 +151,6 @@
"sourceRoot": "projects/akita-mat-datasource/src",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/akita-mat-datasource/tsconfig.lib.json",
"project": "projects/akita-mat-datasource/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/akita-mat-datasource/tsconfig.lib.prod.json"
}
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
Expand Down
Loading

0 comments on commit b745f41

Please sign in to comment.