Skip to content

chore: Update angular demo for bottomsheet to show font icon example. #325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 17, 2021
Merged
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
2 changes: 1 addition & 1 deletion demo-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@angular/platform-browser": "~12.1.0",
"@angular/platform-browser-dynamic": "~12.1.0",
"@angular/router": "~12.1.0",
"@nativescript/core": "8.0.0",
"@nativescript/core": "^8.0.0",
"@nativescript/angular": "~12.0.0",
"@nativescript-community/ui-material-activityindicator": "file:../packages/activityindicator",
"@nativescript-community/ui-material-bottomsheet": "file:../packages/bottomsheet",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<BottomNavigationTab
title="First"
icon="res://ic_home"
src="font://&#xF2Dc;" class="mdi"
></BottomNavigationTab>
<BottomNavigationTab
title="Second"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build.angular": "lerna run build.angular",
"build.angular.win": "lerna run build.angular.win",
"build.all": "lerna run build.all",
"build.win": "lerna run build-win",
"build.all.win": "lerna run build.all.win",
"doc": "node builddoc && git add docs/* && git commit -m \"chore:doc\"",
"force_publish": "lerna publish from-package",
"increment_version": "lerna version",
Expand Down
4 changes: 3 additions & 1 deletion packages/activityindicator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/activityindicator/index.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\activityindicator\\index.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/activityindicator/angular/package.json -c ../../src/activityindicator/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\activityindicator\\angular\\package.json -c ..\\..\\src\\activityindicator\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -47,4 +49,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/bottom-navigation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/bottom-navigation/index.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\bottom-navigation\\index.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/bottom-navigation/angular/package.json -c ../../src/bottom-navigation/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\bottom-navigation\\angular\\package.json -c ..\\..\\src\\bottom-navigation\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -51,4 +53,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/bottomnavigationbar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/bottomnavigationbar/bottomnavigationbar.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\bottomnavigationbar\\bottomnavigationbar.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/bottomnavigationbar/angular/package.json -c ../../src/bottomnavigationbar/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\bottomnavigationbar\\angular\\package.json -c ..\\..\\src\\bottomnavigationbar\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -52,4 +54,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/bottomsheet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/bottomsheet/bottomsheet.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\bottomsheet\\bottomsheet.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/bottomsheet/angular/package.json -c ../../src/bottomsheet/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\bottomsheet\\angular\\package.json -c ..\\..\\src\\bottomsheet\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -46,4 +48,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/button/button.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\button\\button.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/button/angular/package.json -c ../../src/button/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\button\\angular\\package.json -c ..\\..\\src\\button\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -47,4 +49,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/cardview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/cardview/cardview.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\cardview\\cardview.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/cardview/angular/package.json -c ../../src/cardview/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\cardview\\angular\\package.json -c ..\\..\\src\\cardview\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -46,4 +48,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
5 changes: 4 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@
"tsc": "../../node_modules/.bin/cpy '**/*.d.ts' '../../packages/core' --cwd=../../src/core --parents && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy '**/*.d.ts' '..\\..\\packages\\core' --cwd=..\\..\\src\\core --parents && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc && npm run build.hooks",
"build.win": "npm run tsc-win && npm run build.hooks.win",
"build.hooks.win": "..\\..\\node_modules\\.bin\\tsc -skipLibCheck -p tsconfig.hooks.json",
"build.hooks": " tsc -skipLibCheck -p tsconfig.hooks.json",
"build.all": "npm run build.hooks && npm run build",
"build.all.win": "npm run build.hooks.win && npm run build.win",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map android"
},
"nativescript": {
Expand Down Expand Up @@ -49,4 +52,4 @@
"dependencies": {
"@nativescript/hook": "~2.0.0"
}
}
}
4 changes: 3 additions & 1 deletion packages/dialogs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/dialogs/dialogs.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\dialogs\\dialogs.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build",
"build.all.win": "npm run build.win",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
},
"nativescript": {
Expand Down Expand Up @@ -45,4 +47,4 @@
"@nativescript-community/ui-material-textfield": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/floatingactionbutton/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/floatingactionbutton/floatingactionbutton.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\floatingactionbutton\\floatingactionbutton.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/floatingactionbutton/angular/package.json -c ../../src/floatingactionbutton/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\floatingactionbutton\\angular\\package.json -c ..\\..\\src\\floatingactionbutton\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -46,4 +48,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/progress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/progress/progress.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\progress\\progress.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/progress/angular/package.json -c ../../src/progress/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\progress\\angular\\package.json -c ..\\..\\src\\progress\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -46,4 +48,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/ripple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/ripple/ripple.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\ripple\\ripple.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/ripple/angular/package.json -c ../../src/ripple/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\ripple\\angular\\package.json -c ..\\..\\src\\ripple\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -46,4 +48,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/slider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/slider/slider.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\slider\\slider.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/slider/angular/package.json -c ../../src/slider/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\slider\\angular\\package.json -c ..\\..\\src\\slider\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -46,4 +48,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/snackbar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/snackbar/snackbar.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\snackbar\\snackbar.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build",
"build.all.win": "npm run build.win",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
},
"nativescript": {
Expand Down Expand Up @@ -44,4 +46,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/speeddial/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/speeddial/angular/package.json -c ../../src/speeddial/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\speeddial\\angular\\package.json -c ..\\..\\src\\speeddial\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -47,4 +49,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/tabs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/tabs/tabs.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\tabs\\tabs.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/tabs/angular/package.json -c ../../src/tabs/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\tabs\\angular\\package.json -c ..\\..\\src\\tabs\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -46,4 +48,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/textfield/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/textfield/textfield.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\textfield\\textfield.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/textfield/angular/package.json -c ../../src/textfield/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\textfield\\angular\\package.json -c ..\\..\\src\\textfield\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -47,4 +49,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}
4 changes: 3 additions & 1 deletion packages/textview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"tsc": "../../node_modules/.bin/cpy ../../src/textview/textview.d.ts ./ && ../../node_modules/.bin/tsc --skipLibCheck -d",
"tsc-win": "..\\..\\node_modules\\.bin\\cpy ..\\..\\src\\textview\\textview.d.ts .\\ && ..\\..\\node_modules\\.bin\\tsc --skipLibCheck -d",
"build": "npm run tsc",
"build.win": "npm run tsc-win",
"build.all": "npm run build && npm run build.angular",
"build.all.win": "npm run build.win && npm run build.angular.win",
"build.angular": "../../node_modules/.bin/ng-packagr -p ../../src/textview/angular/package.json -c ../../src/textview/angular/tsconfig.json",
"build.angular.win": "..\\..\\node_modules\\.bin\\ng-packagr -p ..\\..\\src\\textview\\angular\\package.json -c ..\\..\\src\\textview\\angular\\tsconfig.json",
"clean": "../../node_modules/.bin/rimraf ./*.d.ts ./*.js ./*.js.map"
Expand Down Expand Up @@ -47,4 +49,4 @@
"@nativescript-community/ui-material-core": "^5.3.18"
},
"gitHead": "c84a4e936ea84c1e5f04f99e8d2aa44657351354"
}
}