Skip to content

Commit

Permalink
Dev folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasAlabes committed Aug 11, 2013
1 parent b87c69c commit 968c3cb
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
raphael.pro-min.js
raphael.pro.js
/.idea
6 changes: 3 additions & 3 deletions Gruntfile.js → dev/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ module.exports = function(grunt) {
},
dist: {
src: "<%= build.dist.dest %>",
dest: "<%= pkg.name %>-min.js"
dest: "../raphael-min.js"
}
},
build: {
options: {
banner: "<%= banner %>"
},
dist: {
dest: "raphael.js",
dest: "../raphael.js",
src: [
"./eve/eve.js",
"../eve/eve.js",
"raphael.core.js",
"raphael.svg.js",
"raphael.vml.js"
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion raphael.core.js → dev/raphael.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// AMD support
if (typeof define === "function" && define.amd) {
// Define as an anonymous module
define(["eve"], function( eve ) {
define(["."], function( eve ) {
return factory(glob, eve);
});
} else {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion raphaelTest.html → dev/raphaelTest.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!--<script type="text/javascript" src="raphael-min.js"></script>-->

<!-- To work with dev versions -->
<script type="text/javascript" src=" ./eve/eve.js"></script>
<script type="text/javascript" src="../eve/eve.js"></script>
<script type="text/javascript" src="raphael.core.js"></script>
<script type="text/javascript" src="raphael.svg.js"></script>

Expand Down
6 changes: 3 additions & 3 deletions raphael-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion raphael.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@
// AMD support
if (typeof define === "function" && define.amd) {
// Define as an anonymous module
define(["eve"], function( eve ) {
define(["."], function( eve ) {
return factory(glob, eve);
});
} else {
Expand Down

0 comments on commit 968c3cb

Please sign in to comment.