Skip to content
Snippets Groups Projects
Commit ac0c2e37 authored by Christopher Guindon's avatar Christopher Guindon :palm_tree:
Browse files

Fix solstice-assets dependencies


Add link to Eclipse Project Management Infrastructure.

Signed-off-by: Christopher Guindon's avatarChristopher Guindon <chris.guindon@eclipse-foundation.org>
parent cf805027
No related branches found
No related tags found
No related merge requests found
module.exports = function (grunt) { module.exports = function (grunt) {
'use strict'; 'use strict';
require('load-grunt-tasks')(grunt);
grunt.initConfig({ grunt.initConfig({
aglio: { aglio: {
'all': { 'all': {
...@@ -43,6 +42,9 @@ module.exports = function (grunt) { ...@@ -43,6 +42,9 @@ module.exports = function (grunt) {
} }
} }
}); });
grunt.loadNpmTasks('grunt-aglio');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('build', ['aglio']); grunt.registerTask('build', ['aglio']);
grunt.registerTask('serve', [ grunt.registerTask('serve', [
'build', 'build',
......
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
Source files for the API should be placed in __src__ folder. Source files for the API should be placed in __src__ folder.
## Installation ## Installation
To install dependencies, run ___npm install && bower install && cd bower_components/solstice && bower install && cd ../../ ___. To install dependencies, run ___npm install && bower install___.
## Usage ## Usage
To generate some pretty HTML into the docs folder, run ___grunt build___ at the command line. To generate some pretty HTML into the docs folder, run ___npm run grunt build___ at the command line.
To help development, if you run ___grunt serve___, the HTML will be accessible from http://localhost:8080/index.html To help development, if you run ___npm run grunt serve___, the HTML will be accessible from http://localhost:8080/index.html
When you save one of the source files, this page will automatically refresh. When you save one of the source files, this page will automatically refresh.
\ No newline at end of file
...@@ -23,6 +23,6 @@ ...@@ -23,6 +23,6 @@
"tests" "tests"
], ],
"dependencies": { "dependencies": {
"solstice": "https://github.com/EclipseFdn/solstice-assets.git" "solstice-assets": "https://github.com/EclipseFdn/solstice-assets.git"
} }
} }
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -9,12 +9,15 @@ ...@@ -9,12 +9,15 @@
"files": [ "files": [
"dist/index.html" "dist/index.html"
], ],
"scripts": {
"grunt": "node_modules/.bin/grunt",
"postinstall": "find node_modules/ -name '*.info' -type f -delete"
},
"devDependencies": { "devDependencies": {
"grunt": "^1.0.1", "grunt": "^1.0.2",
"grunt-aglio": "^0.4.1", "grunt-aglio": "^0.4.1",
"grunt-contrib-connect": "^1.0.2", "grunt-contrib-connect": "^1.0.2",
"grunt-contrib-watch": "^1.0.0", "grunt-contrib-watch": "^1.0.0",
"load-grunt-tasks": "^3.5.2", "less-plugin-npm-import": "^2.1.0"
"time-grunt": "^1.4.0"
} }
} }
...@@ -17,6 +17,7 @@ Althought they are not directly related to this API, the Eclipse forge proposes ...@@ -17,6 +17,7 @@ Althought they are not directly related to this API, the Eclipse forge proposes
+ [Eclipse Gerrit](https://git.eclipse.org/r/) **([Documentation](https://gerrit-review.googlesource.com/Documentation/rest-api.html))** + [Eclipse Gerrit](https://git.eclipse.org/r/) **([Documentation](https://gerrit-review.googlesource.com/Documentation/rest-api.html))**
+ [Eclipse Jenkins](https://ci.eclipse.org/) **([Documentation](https://wiki.jenkins.io/display/JENKINS/Remote+access+API))** + [Eclipse Jenkins](https://ci.eclipse.org/) **([Documentation](https://wiki.jenkins.io/display/JENKINS/Remote+access+API))**
+ [Eclipse Marketplace](http://marketplace.eclipse.org/) **([Documentation](https://wiki.eclipse.org/Marketplace/REST))** + [Eclipse Marketplace](http://marketplace.eclipse.org/) **([Documentation](https://wiki.eclipse.org/Marketplace/REST))**
+ [Eclipse Project Management Infrastructure (PMI)](https://wiki.eclipse.org/Project_Management_Infrastructure) **([Documentation](https://wiki.eclipse.org/Project_Management_Infrastructure#Web_APIs))**
### Rate Limit ### Rate Limit
......
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
// author: Christopher Guindon <chris.guindon@eclipse.org> // author: Christopher Guindon <chris.guindon@eclipse.org>
// ------------------------------------------------------- // -------------------------------------------------------
@import url("../node_modules/aglio-theme-olio/styles/layout-default.less"); @import "node_modules/aglio-theme-olio/styles/layout-default.less";
@import url("../bower_components/solstice/stylesheets/_core/barebone/styles.less"); @import "bower_components/solstice-assets/stylesheets/_core/barebone/styles.less";
body,html{ body,html{
padding:0; padding:0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment