Skip to content

Commit

Permalink
feat() First public version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyaran committed Sep 27, 2021
1 parent 5b3bf11 commit e0c6dae
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 162 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/version_bump_minor.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/version_bump_patch.yml

This file was deleted.

8 changes: 7 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,10 @@ src
test
test-data-wip
coverage
.nyc_output
.github
.idea
.nyc_output
.editorconfig
.eslintignore
.eslintrc.json
.travis.yml
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
* Check on [changelog folder](changelog/).

## [1.0.0] - 2021-09-27
### Changed
* Rename project to [gplint](https://github.com/Nyaran/gplint).
* Improve console output when using stylish, adding column number and error level.
* Improve rule `no-dupe-scenario-names` allowing to validate scenario names after replace the example variables.
* Update Gherkin to latest version.

## [PRE]
All the previous work from https://github.com/vsiakka/gherkin-lint
12 changes: 12 additions & 0 deletions changelog/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Changelog folder
All changes that are not included in a public release (not RC) are listed in the files inside this folder. When the new
version is generated, the changes should be moved to the [CHANGELOG.md](../CHANGELOG.md) file with the new version.

The names for each file should be a short name about the change, usually is the same as the branch name (don't include
JIRA Ids).
102 changes: 3 additions & 99 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,104 +1,8 @@
{
"name": "gplint",
"version": "1.0.0",
"description": "A Gherkin linter/validator written in javascript. Based on vsiakka work.",
"author": "Vasiliki Siakka",
"maintainers": [
{
"name": "Luis Zurro",
"url": "https://github.com/Nyaran"
}
],
"contributors": [
{
"name": "Tim Brust",
"url": "https://github.com/timbru31"
},
{
"name": "Oskar Pfeifer-Bley",
"url": "https://github.com/UFOMelkor"
},
{
"name": "Xavier Garcia Buils",
"url": "https://github.com/xgbuils"
},
{
"name": "Rene Saarsoo",
"url": "https://github.com/nene"
},
{
"name": "Giuseppe DiBella",
"url": "https://github.com/gd46"
},
{
"name": "Joscha Feth",
"url": "https://github.com/joscha"
},
{
"name": "Simon St John-Green",
"url": "https://github.com/SimonStJG"
},
{
"name": "Jonathan Hedstrom",
"url": "https://github.com/jhedstrom"
},
{
"name": "josemenveg",
"url": "https://github.com/josemenveg"
},
{
"name": "Guy Kisel",
"url": "https://github.com/guykisel"
},
{
"name": "Rory Price-Coggins",
"url": "https://github.com/roryp2"
},
{
"name": "JuanMa Ruiz",
"url": "https://github.com/JuanMaRuiz"
},
{
"name": "Matt Jarrett",
"url": "https://github.com/cujarrett"
},
{
"name": "Standa Opichal",
"url": "https://github.com/opichals"
},
{
"name": "Bloodsoul",
"url": "https://github.com/Bloodsoul"
},
{
"name": "David Goss",
"url": "https://github.com/davidjgoss"
},
{
"name": "Alexander Bayandin",
"url": "https://github.com/bayandin"
},
{
"name": "Mike O'Connor",
"url": "https://github.com/mikeoconnor0308"
},
{
"name": "Dave M",
"url": "https://github.com/dsm2005"
},
{
"name": "Justin Zelinsky",
"url": "https://github.com/justinzelinsky"
},
{
"name": "Mathieu Couette",
"url": "https://github.com/MathieuCouette"
},
{
"name": "David Rodríguez",
"url": "https://github.com/deivid-rodriguez"
}
],
"description": "A Gherkin linter/validator written in javascript. Based on gherkin-lint by vsiakka.",
"author": "Luis Zurro",
"main": "dist/main.js",
"repository": {
"type": "git",
Expand All @@ -114,7 +18,7 @@
],
"dependencies": {
"@cucumber/gherkin": "22.0.0",
"@cucumber/gherkin-streams": "^4.0.0",
"@cucumber/gherkin-streams": "4.0.0",
"commander": "5.0.0",
"core-js": "3.6.4",
"glob": "7.1.6",
Expand Down

0 comments on commit e0c6dae

Please sign in to comment.