Created
July 10, 2015 14:20
-
-
Save pmlopes/9f18f63b35dc58fe786a to your computer and use it in GitHub Desktop.
Revisions
-
pmlopes created this gist
Jul 10, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ # Vert.x 3 Minimal stack Vert.x3 + the endorsed modules ## Contents * Vert.x Core * Groovy, JS and Ruby languages * Hazelcast clustering * Service proxy More information on: * The vert.x web site: http://vertx.io This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ To build unpack the desired stack: ``` tar --strip-components=1 -zxvf vertx-3.0.0-min.tar.gz ``` make sure the stack name and version on package.json matches the tar and then: ``` npm publish ``` This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ throw new Error('This module is not supposed to be imported!'); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ { "name": "vertx3-min", "version": "3.0.0-1", "description": "Vert.x: A tool-kit for building reactive applications on the JVM.", "main": "index.js", "repository": "vert-x3", "keywords": [ "vert.x", "framework", "polyglot", "reactive" ], "license": "Apache-2.0", "dependencies": {}, "bin": { "vertx": "./bin/vertx", "vertx.bat": "./bin/vertx.bat" }, "homepage": "http://vertx.io", "engines": {}, "files": [ "bin", "conf", "lib", "README.md", "index.js" ] }