Skip to content

Commit 2985512

Browse files
committed
Changing jQuery++ submodule folder. Removing CanUI for now.
1 parent 6d3b233 commit 2985512

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.gitmodules

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
[submodule "can"]
22
path = can
33
url = git://github.com/bitovi/canjs.git
4-
[submodule "canui"]
5-
path = canui
6-
url = git://github.com/bitovi/canui.git
7-
[submodule "jquery"]
8-
path = jquery
9-
url = git://github.com/bitovi/jquerypp.git
104
[submodule "steal"]
115
path = steal
126
url = git://github.com/bitovi/steal.git
@@ -16,3 +10,6 @@
1610
[submodule "documentjs"]
1711
path = documentjs
1812
url = git://github.com/bitovi/documentjs.git
13+
[submodule "jquerypp"]
14+
path = jquerypp
15+
url = https://github.com/bitovi/jquerypp.git

build/tasks/beautify.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ module.exports = function (grunt) {
4040
var excludes = grunt.config(['beautifier', this.target, 'exclude']);
4141

4242
grunt.file.expand(this.filesSrc).filter(function (file) {
43+
if(/\.min\./.test(file)) {
44+
grunt.log.writeln('Not beautifying ' + file);
45+
return false;
46+
}
47+
4348
for (var i = 0; i < excludes.length; i++) {
4449
if (excludes[i].test(file)) {
4550
grunt.log.writeln('Not beautifying ' + file);

can

Submodule can updated from 8211359 to 1df94a7

canui

Lines changed: 0 additions & 1 deletion
This file was deleted.

jquery

Lines changed: 0 additions & 1 deletion
This file was deleted.

jquerypp

Submodule jquerypp added at 7aa8096

stealconfig.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ steal.config({
66
}
77
},
88
paths: {
9+
"jquery/": "jquerypp/",
910
"jquery": "can/lib/jquery.1.9.1.js",
1011
"mootools/mootools.js" : "can/lib/mootools-core-1.4.5.js",
1112
"dojo/dojo.js" : "can/util/dojo/dojo-1.8.1.js",

0 commit comments

Comments
 (0)