Browse Source

.amd.json: Formatting, remove compat.

Herby Vojčík 5 years ago
parent
commit
732c60c1c8
9 changed files with 65 additions and 50 deletions
  1. 10 7
      bootstrap.amd.json
  2. 9 7
      codemirror.amd.json
  3. 12 7
      jquery-ui-dist.amd.json
  4. 6 3
      jquery.amd.json
  5. 5 5
      local.amd.json
  6. 7 7
      require-css.amd.json
  7. 3 3
      requirejs.amd.json
  8. 3 3
      showdown.amd.json
  9. 10 8
      typeahead.js.amd.json

+ 10 - 7
bootstrap.amd.json

@@ -1,10 +1,13 @@
 {
-    "paths": {
-        "bootstrap": "dist"
-    },
-    "shim": {
-        "bootstrap/js/bootstrap": {
-            "deps": [ "jquery", "css!bootstrap/css/bootstrap" ]
-        }
+  "paths": {
+    "bootstrap": "dist"
+  },
+  "shim": {
+    "bootstrap/js/bootstrap": {
+      "deps": [
+        "jquery",
+        "css!bootstrap/css/bootstrap"
+      ]
     }
+  }
 }

+ 9 - 7
codemirror.amd.json

@@ -1,10 +1,12 @@
 {
-    "paths": {
-        "codemirror": "."
-    },
-    "shim": {
-        "codemirror/lib/codemirror": {
-            "deps": [ "css!codemirror/lib/codemirror" ]
-        }
+  "paths": {
+    "codemirror": "."
+  },
+  "shim": {
+    "codemirror/lib/codemirror": {
+      "deps": [
+        "css!codemirror/lib/codemirror"
+      ]
     }
+  }
 }

+ 12 - 7
jquery-ui-dist.amd.json

@@ -1,10 +1,15 @@
 {
-    "paths": {
-        "jquery-ui": ["jquery-ui", "ui/jquery-ui"]
-    },
-    "shim": {
-        "jquery-ui": {
-            "deps": [ "jquery" ]
-        }
+  "paths": {
+    "jquery-ui": [
+      "jquery-ui",
+      "ui/jquery-ui"
+    ]
+  },
+  "shim": {
+    "jquery-ui": {
+      "deps": [
+        "jquery"
+      ]
     }
+  }
 }

+ 6 - 3
jquery.amd.json

@@ -1,5 +1,8 @@
 {
-    "paths": {
-        "jquery": ["dist/jquery", "jquery"]
-    }
+  "paths": {
+    "jquery": [
+      "dist/jquery",
+      "jquery"
+    ]
+  }
 }

+ 5 - 5
local.amd.json

@@ -1,7 +1,7 @@
 {
-    "paths": {
-        "helios": "src",
-        "helios/resources": "resources",
-        "helios/index": "index"
-    }
+  "paths": {
+    "helios": "src",
+    "helios/resources": "resources",
+    "helios/index": "index"
+  }
 }

+ 7 - 7
require-css.amd.json

@@ -1,10 +1,10 @@
 {
-    "paths": {
-        "require-css": "."
-    },
-    "map": {
-        "*": {
-            "css": "require-css/css"
-        }
+  "paths": {
+    "require-css": "."
+  },
+  "map": {
+    "*": {
+      "css": "require-css/css"
     }
+  }
 }

+ 3 - 3
requirejs.amd.json

@@ -1,5 +1,5 @@
 {
-    "paths": {
-        "requireJS": "require"
-    }
+  "paths": {
+    "requireJS": "require"
+  }
 }

+ 3 - 3
showdown.amd.json

@@ -1,5 +1,5 @@
 {
-    "paths": {
-        "helios/showdown": "src/showdown"
-    }
+  "paths": {
+    "helios/showdown": "src/showdown"
+  }
 }

+ 10 - 8
typeahead.js.amd.json

@@ -1,11 +1,13 @@
 {
-    "paths": {
-        "typeahead": "dist/typeahead.jquery"
-    },
-    "shim": {
-        "typeahead": {
-            "deps": [ "jquery" ],
-            "exports": "jQuery.fn.typeahead"
-        }
+  "paths": {
+    "typeahead": "dist/typeahead.jquery"
+  },
+  "shim": {
+    "typeahead": {
+      "deps": [
+        "jquery"
+      ],
+      "exports": "jQuery.fn.typeahead"
     }
+  }
 }