-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
0 parents
commit f67fe00
Showing
134 changed files
with
15,370 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
bower_components |
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,9 @@ | ||
{ | ||
"libs": [ | ||
"chai" | ||
], | ||
"plugins": { | ||
"node": {}, | ||
"coffee": {} | ||
} | ||
} |
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,12 @@ | ||
# SwitchyOmega authors: | ||
|
||
FelisCatus <[email protected]> | ||
|
||
# SwitchyOmega includes or links to (unchanged): | ||
# * jQuery UI (custom build) | ||
# => omega-web/lib/jquery-ui-*.js | ||
# => Copyright 2014 jQuery Foundation and other contributors; Licensed MIT | ||
# * Many npm packages and bower packages | ||
# => **/node_modules, **/bower_components | ||
# => Please refer to their project homepages or npm package pages for the | ||
# copyright and license information of each package. |
Large diffs are not rendered by default.
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,22 @@ | ||
module.exports = (grunt) -> | ||
submodules = ['omega-pac', 'omega-target', 'omega-web', 'omega-target-*'] | ||
hubConfig = | ||
all: | ||
options: | ||
concurrent: Infinity | ||
src: "../*/Gruntfile.*" | ||
for module in submodules | ||
hubConfig[module] = | ||
src: "../#{module}/Gruntfile.*" | ||
|
||
hubAll = (task) -> "hub:#{module}:#{task}" for module in submodules | ||
|
||
grunt.initConfig { | ||
hub: hubConfig | ||
} | ||
|
||
grunt.loadNpmTasks 'grunt-hub' | ||
|
||
grunt.registerTask 'default', hubAll('default') | ||
grunt.registerTask 'test', hubAll('test') | ||
grunt.registerTask 'watch', ['hub:all:watch'] |
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,13 @@ | ||
{ | ||
"name": "omega-build", | ||
"version": "0.0.1", | ||
"private": true, | ||
"devDependencies": { | ||
"grunt": "~0.4.1", | ||
"grunt-hub": "^0.7.0" | ||
}, | ||
"scripts": { | ||
"deps": "npm install && (cd ../omega-pac && npm install); (cd ../omega-target && npm install); (cd ../omega-web && npm install && bower install); (cd ../omega-target-chromium-extension/ && npm install);", | ||
"dev": "(cd ../omega-pac && npm run dev); (cd ../omega-target && npm run dev); (cd ../omega-target-chromium-extension/ && npm run dev);" | ||
} | ||
} |
Oops, something went wrong.