Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Rework Home Panel
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Mar 7, 2016
1 parent 13f5216 commit 4c6e9c1
Show file tree
Hide file tree
Showing 7 changed files with 1,153 additions and 603 deletions.
34 changes: 34 additions & 0 deletions core/src/plugins/access.ajxp_home/Gruntfile.js
@@ -0,0 +1,34 @@
module.exports = function(grunt) {
grunt.initConfig({
babel: {
options: {},

dist: {
files: [
{
expand: true,
cwd: 'react/',
src: ['**/*.js'],
dest: 'build/',
ext: '.js'
}
]
}
},
watch: {
js: {
files: [
"react/**/*"
],
tasks: ['babel'],
options: {
spawn: false
}
}
}
});
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['babel']);

};
146 changes: 75 additions & 71 deletions core/src/plugins/access.ajxp_home/build/WelcomeComponents.js

Large diffs are not rendered by default.

0 comments on commit 4c6e9c1

Please sign in to comment.