Skip to content

Latest commit

 

History

History
72 lines (48 loc) · 1.08 KB

CONTRIBUTING.md

File metadata and controls

72 lines (48 loc) · 1.08 KB

Issues

If you find any issues or have any feature requests, please file them in the issue tracker.

If you are filing issues, please provide the version of gauge core and gauge-js plugin that you have installed. You can find it by doing:

$ gauge -v

Develop

Download

$ git clone git://github.com/getgauge/gauge-js --recursive

Setup:

Install npm dependencies:

$ npm install

Run tests:

$ npm test

Create package

$ npm run package

Installing from source

$ npm run installPlugin

Code Style

  • Indent: 2 spaces
  • Line ending: LF

Bump up gauge-js version

  • Update the value version property injs.json file.

Ex:

     },
-    "version": "2.3.9",
+    "version": "2.3.10",
     "gaugeVersionSupport": {
  • Update the value of version property in package.json.

Ex:

   "name": "gauge-js",
-  "version": "2.3.9",
+  "version": "2.3.10",