Skip to content

Commit

Permalink
Merge pull request #8 from mxschmitt/updated-skeleton
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
vincent99 authored Mar 27, 2018
2 parents bcdc09e + 700ea27 commit 2a09802
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 34 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Skeleton Rancher UI driver for custom docker-machine drivers
* Update the "name" in package.json to match
* You should also update description, URLs, etc, but these aren't strictly required.
* `npm install`
* `bower install`

## Development

Expand All @@ -22,7 +21,7 @@ This package contains a small web-server that will serve up the custom driver UI

For other users to see your driver, you need to build it and host the output on a server accessible from their browsers.

* `npm build`
* `npm run build`
* Copy the contents of the `dist` directory onto a webserver.
* If your Rancher is configured to use HA or SSL, the server must also be available via HTTPS.

Expand Down
22 changes: 0 additions & 22 deletions bower.json

This file was deleted.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const gulp = require('gulp');
const clean = require('gulp-clean');
const gulpConcat = require('gulp-concat');
const gulpConnect = require('gulp-connect');
const emCompiler = require('./bower_components/ember/ember-template-compiler');
const emCompiler = require('ember-source/dist/ember-template-compiler');
const htmlbars = require('gulp-htmlbars-compiler');
const wrapAmd = require('gulp-wrap-amd');
const replace = require('gulp-replace');
Expand Down
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,18 @@
},
"homepage": "https://github.com/rancher/ui-driver-skel#readme",
"devDependencies": {
"del": "2.2.0",
"del": "3.0.0",
"gulp": "3.9.1",
"gulp-clean": "0.3.2",
"gulp-concat": "2.6.0",
"gulp-connect": "3.2.2",
"gulp-clean": "0.4.0",
"gulp-concat": "2.6.1",
"gulp-connect": "5.5.0",
"gulp-htmlbars-compiler": "0.0.2",
"gulp-jshint": "2.0.0",
"gulp-replace": "0.5.4",
"gulp-sourcemaps": "1.6.0",
"gulp-jshint": "2.1.0",
"gulp-replace": "0.6.1",
"gulp-sourcemaps": "2.6.4",
"gulp-wrap-amd": "0.5.0",
"jshint": "2.9.1",
"yargs": "4.6.0"
"jshint": "2.9.5",
"yargs": "11.0.0",
"ember-source": "^3.0.0"
}
}

0 comments on commit 2a09802

Please sign in to comment.