You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/06/08 13:20:01 UTC

[2/2] incubator-ignite git commit: #nodejs: small fixes

#nodejs: small fixes


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/551b713a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/551b713a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/551b713a

Branch: refs/heads/ignite-nodejs
Commit: 551b713a3cae755b501fbf3dceba516cb6c6ff61
Parents: 86ba5d9
Author: ivasilinets <iv...@gridgain.com>
Authored: Mon Jun 8 14:19:47 2015 +0300
Committer: ivasilinets <iv...@gridgain.com>
Committed: Mon Jun 8 14:19:47 2015 +0300

----------------------------------------------------------------------
 modules/nodejs/src/main/js/apache-ignite.js | 22 ++++++++++++++++++++++
 modules/nodejs/src/main/js/apache_ignite.js | 22 ----------------------
 modules/nodejs/src/main/js/package.json     |  5 +++--
 3 files changed, 25 insertions(+), 24 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/551b713a/modules/nodejs/src/main/js/apache-ignite.js
----------------------------------------------------------------------
diff --git a/modules/nodejs/src/main/js/apache-ignite.js b/modules/nodejs/src/main/js/apache-ignite.js
new file mode 100644
index 0000000..c20e3dd
--- /dev/null
+++ b/modules/nodejs/src/main/js/apache-ignite.js
@@ -0,0 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+module.exports = {
+  Cache : require('./cache.js').Cache,
+  Ignition : require('./ignition.js').Ignition,
+  Server : require('./server.js').Server
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/551b713a/modules/nodejs/src/main/js/apache_ignite.js
----------------------------------------------------------------------
diff --git a/modules/nodejs/src/main/js/apache_ignite.js b/modules/nodejs/src/main/js/apache_ignite.js
deleted file mode 100644
index c20e3dd..0000000
--- a/modules/nodejs/src/main/js/apache_ignite.js
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-module.exports = {
-  Cache : require('./cache.js').Cache,
-  Ignition : require('./ignition.js').Ignition,
-  Server : require('./server.js').Server
-}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/551b713a/modules/nodejs/src/main/js/package.json
----------------------------------------------------------------------
diff --git a/modules/nodejs/src/main/js/package.json b/modules/nodejs/src/main/js/package.json
index e4fab0a..7efc4e2 100644
--- a/modules/nodejs/src/main/js/package.json
+++ b/modules/nodejs/src/main/js/package.json
@@ -6,8 +6,9 @@
     "name": "Irina Vasilinets",
     "email": "ivasilients@gridgain.com"
   }],
-  "main" : "apache_ignite.js",
+  "main" : "apache-ignite.js",
   "license" : "Apache-2.0",
   "keywords" : "grid",
-  "homepage" : "https://ignite.incubator.apache.org/"
+  "homepage" : "https://ignite.incubator.apache.org/",
+  "engines" : { "node" : ">=0.12.4" }
 }
\ No newline at end of file