Skip to content

Commit

Permalink
Add basic files and change description
Browse files Browse the repository at this point in the history
tsd.json describes which definetley typed files we will be using. Inside package.json is postinstall, which will run bower install and tsd install.
  • Loading branch information
karelhala committed Mar 22, 2016
1 parent 7072409 commit fb93775
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 42 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ pids
libs/
node_modules/
bower_components/
tsd/
*.js.map

._*
Expand Down
9 changes: 9 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,12 @@ endif::[]

Please refer to http://www.hawkular.org/docs/dev/ui-dev.html[Hawkular UI Development Docs] for further UI development details.

== Prerequisites

You need to have installed [Node.js and npm](https://docs.npmjs.com/getting-started/installing-node) on your system.

Then install these node packages
[source]
npm install -g tsd bower webpack gulp


45 changes: 4 additions & 41 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,58 +1,21 @@
{
"name": "hawkular-ui-components",
"description": "WIP:Hawt.io 2 plugins for the Hawkular Console.",
"description": "Hawkular components for other projects.",
"version": "0.3.15",
"keywords": [
"hawtio-hawkular",
"hawkular-console",
"hawkular-ui"
],
"main": [
"dist/hawkular-ui-components-accounts.css",
"dist/hawkular-ui-components-accounts.js",
"dist/hawkular-ui-components-metrics.js",
"dist/hawkular-ui-components-metrics.css",
"dist/hawkular-ui-components-directives.js",
"dist/hawkular-ui-components-directives.css",
"dist/hawkular-ui-components-alerts.js",
"dist/hawkular-ui-components-alerts.css",
"dist/hawkular-ui-components-inventory.js"
"dist/css/hawkular-ui-components.css",
"dist/js/hawkular-ui-components.js",
"dist/js/hawkular-ui-components.min.js"
],
"ignore": [
"*",
"!dist/",
"!dist/*"
],
"dependencies": {
"angular-bootstrap": "0.11.0",
"angular-md5": "0.1.7",
"angular-momentjs": "0.1.9",
"angular-patternfly": "0.0.2",
"angular-resource": "1.3.15",
"angular-scroll": "0.6.5",
"angular-ui-select": "0.11.2",
"bootstrap-select": "1.6",
"d3": "3.4.8",
"event-drops": "0.1.1",
"hawkular-charts": "^0.2.4",
"hawkular-ui-services": "^0.2.0",
"hawtio-core-navigation": "2.0.39",
"hawtio-core": "2.0.16",
"hawtio-template-cache": "2.0.2",
"hawtio-utilities": "2.0.21",
"hawtio-oauth": "2.0.7",
"lodash": "3.2.0",
"moment": "2.9.0",
"toastr": "2.1.1",
"patternfly": "1.1.3"
},
"devDependencies": {
"angular-mocks": "1.3.15",
"angular-resource": "1.3.15",
"hawtio-core-dts": "2.0.17"
},
"resolutions": {
"patternfly": "1.1.3",
"angular": "1.3.15"
}
}
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "hawkular-ui-components",
"version": "0.1.1",
"version": "0.3.15",
"private": true,
"scripts": {
"postinstall": "bower install && tsd install"
},
"devDependencies": {
"bower": "1.3.12",
"del": "1.1.1",
Expand Down
27 changes: 27 additions & 0 deletions tsd.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"version": "v4",
"repo": "borisyankov/DefinitelyTyped",
"ref": "master",
"path": "tsd/typings",
"bundle": "tsd/typings/tsd.d.ts",
"installed": {
"angularjs/angular.d.ts": {
"commit": "4d2d0653003a4d1df4d7c68054cce4f4ace58bdf"
},
"jquery/jquery.d.ts": {
"commit": "4d2d0653003a4d1df4d7c68054cce4f4ace58bdf"
},
"webpack/webpack-env.d.ts": {
"commit": "c0d876601e0f8236fd6b57626eb62c4e485f1563"
},
"lodash/lodash.d.ts": {
"commit": "9f0f926a12026287b5a4a229e5672c01e7549313"
},
"rx/rx-lite.d.ts": {
"commit": "9f0f926a12026287b5a4a229e5672c01e7549313"
},
"rx/rx.d.ts": {
"commit": "9f0f926a12026287b5a4a229e5672c01e7549313"
}
}
}

0 comments on commit fb93775

Please sign in to comment.