-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a42c1ac
commit 5d01b3a
Showing
204 changed files
with
18,851 additions
and
6,370 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
*/.project | ||
*/.pmd | ||
**.iml | ||
**.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
module.exports = function (grunt) { | ||
// Project configuration. | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
watch: { | ||
syncadyenaddon: { | ||
files: ['webroot/_ui/responsive/common/**/*.js'], | ||
tasks: ['sync:syncadyenaddon'], | ||
}, | ||
}, | ||
|
||
sync: { | ||
syncadyenaddon: { | ||
files: [ | ||
{ | ||
cwd: 'webroot/_ui/responsive/common/', | ||
src: '**/*.js', | ||
dest: '../../../../build/hybris/bin/modules/base-accelerator/yacceleratorstorefront/web/webroot/_ui/addons/adyenv6b2ccheckoutaddon/responsive/common/', | ||
} | ||
] | ||
}, | ||
} | ||
|
||
}); | ||
|
||
// Plugins | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
grunt.loadNpmTasks('grunt-sync'); | ||
|
||
// Default task(s). Run 'grunt watch' to start the watching task or add 'watch' to the task list and run 'grunt'. | ||
grunt.registerTask('default', ['sync', 'watch']); | ||
|
||
|
||
}; |
Oops, something went wrong.