Skip to content

Commit

Permalink
Merge pull request #149 from swisspush/develop
Browse files Browse the repository at this point in the history
Release 0.9.8
  • Loading branch information
lbovet authored Sep 15, 2020
2 parents a52a724 + 20ffe35 commit 9ce4b3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apikana",
"version": "0.9.7",
"version": "0.9.8",
"description": "Integrated tools for REST API design - アピ",
"main": "index.js",
"bin": {
Expand Down
5 changes: 5 additions & 0 deletions src/plopfile_start.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ module.exports = function (plop, cfg) {
return version.replace(/-(?!.*-).*/, "-SNAPSHOT");
});

plop.setHelper('urlEncode', function(options) {
return decodeURIComponent(options.fn(this))
.replace(/@/g, '%40'); // Some markdown interpreters do not like them
});

plop.setHelper('ConvertDependency', (dependencies) => {
var result = [];

Expand Down

0 comments on commit 9ce4b3e

Please sign in to comment.