Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisCatus committed Sep 20, 2014
0 parents commit f67fe00
Show file tree
Hide file tree
Showing 134 changed files with 15,370 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
bower_components
9 changes: 9 additions & 0 deletions .tern-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"libs": [
"chai"
],
"plugins": {
"node": {},
"coffee": {}
}
}
12 changes: 12 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# SwitchyOmega authors:

FelisCatus <catusx@gmail.com>

# 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.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions omega-build/Gruntfile.coffee
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']
13 changes: 13 additions & 0 deletions omega-build/package.json
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);"
}
}
Loading

0 comments on commit f67fe00

Please sign in to comment.