Skip to content

Commit

Permalink
🎉 Intialize markdown project
Browse files Browse the repository at this point in the history
  • Loading branch information
frinyvonnick committed Aug 28, 2018
1 parent 86ca3ea commit a4a12bb
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/gitmoji-changelog-markdown/dist/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict';

Object.defineProperty(exports, "__esModule", {
value: true
});
exports.format = format;
function format() {
return 'Formatted';
}
26 changes: 26 additions & 0 deletions packages/gitmoji-changelog-markdown/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "@gitmoji-changelog/markdown",
"version": "0.0.1",
"main": "dist/index.js",
"bin": {
"gitmoji-changelog": "./dist/index.js"
},
"description": "Gitmoji Changelog markdown formatter",
"repository": {
"type": "git",
"url": "git+https://github.com/frinyvonnick/gitmoji-changelog.git"
},
"author": "Yvonnick FRIN (https://github.com/frinyvonnick)",
"license": "MIT",
"bugs": {
"url": "https://github.com/frinyvonnick/gitmoji-changelog/issues"
},
"homepage": "https://github.com/frinyvonnick/gitmoji-changelog#readme",
"scripts": {
"build": "babel src --out-dir dist --ignore spec.js"
},
"devDependencies": {
"babel-cli": "^6.26.0"
},
"dependencies": {}
}
3 changes: 3 additions & 0 deletions packages/gitmoji-changelog-markdown/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function format() {
return 'Formatted'
}

0 comments on commit a4a12bb

Please sign in to comment.