Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jobs:
id: package-version
uses: martinbeentjes/npm-get-version-action@master

- name: Deploy

run: npm run prepublish:lib
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

- name: Deploy

run: npm run publish:lib
Expand Down
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
}
}
},
"@swimlane/ngx-datatable": {
"@rbtechdev/ngx-datatable": {
"projectType": "library",
"root": "projects/swimlane/ngx-datatable",
"sourceRoot": "projects/swimlane/ngx-datatable/src",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib:prod": "ng build @swimlane/ngx-datatable --configuration production",
"build:lib:prod": "ng build @rbtechdev/ngx-datatable --configuration production",
"copy-files": "cp README.md dist/swimlane/ngx-datatable/README.md && cp LICENSE dist/swimlane/ngx-datatable/LICENSE && cpx \"src/assets/**/*\" \"dist/swimlane/ngx-datatable/assets\" && cpx \"projects/swimlane/ngx-datatable/src/lib/themes/**/*\" \"dist/swimlane/ngx-datatable/themes\"",
"build:css": "scss-bundle -c ./scss-bundle.config.json && node-sass -o dist/swimlane/ngx-datatable/themes dist/swimlane/ngx-datatable/themes && node-sass -o dist/swimlane/ngx-datatable dist/swimlane/ngx-datatable",
"test": "run-p lint test:unit",
"test:unit": "ng test @swimlane/ngx-datatable --watch=false",
"test:watch": "ng test @swimlane/ngx-datatable",
"test:ci": "ng test @swimlane/ngx-datatable --watch=false --progress=false --browsers=ChromeHeadlessCI",
"test:unit": "ng test @rbtechdev/ngx-datatable --watch=false",
"test:watch": "ng test @rbtechdev/ngx-datatable",
"test:ci": "ng test @rbtechdev/ngx-datatable --watch=false --progress=false --browsers=ChromeHeadlessCI",
"ci": "run-s lint prettier:ci test:ci",
"lint": "ng lint",
"e2e": "ng e2e",
Expand Down
2 changes: 1 addition & 1 deletion projects/swimlane/ngx-datatable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rbtechdev/ngx-datatable",
"version": "20.0.1",
"version": "20.0.2",
"description": "ngx-datatable is an Angular table grid component for presenting large and complex data.",
"peerDependencies": {
"@angular/common": ">=11.0.2",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@swimlane/ngx-datatable": ["dist/swimlane/ngx-datatable"],
"@swimlane/ngx-datatable/*": ["dist/swimlane/ngx-datatable/*"]
"@rbtechdev/ngx-datatable": ["dist/swimlane/ngx-datatable"],
"@rbtechdev/ngx-datatable/*": ["dist/swimlane/ngx-datatable/*"]
}
},
"angularCompilerOptions": {
Expand Down