Skip to content

Commit

Permalink
Merge pull request #1 from yazilimcimekani/first_release
Browse files Browse the repository at this point in the history
pkg: Setup package files and version
  • Loading branch information
mertssmnoglu authored Apr 19, 2023
2 parents b3f37b6 + f10a72e commit 6b6887d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{
"name": "@yazilimcimekani/mdoctor",
"version": "1.0.0",
"version": "0.0.1-beta",
"description": "Your CLI Markdown Doctor",
"main": "src/cli.js",
"bin": {
"@yazilimcimekani/mdoctor": "bin/mdoctor",
"markdown-doctor": "bin/mdoctor",
"mdoctor": "bin/mdoctor"
},
"files": [
"bin",
"src",
"src/commands",
"src/cli.js"
],
"publishConfig": {
"access": "public"
},
Expand All @@ -25,7 +31,11 @@
"markdown",
"markdown-doctor"
],
"author": "Yazılımcı Mekanı Dev Team",
"author": {
"name": "Yazılımcı Mekanı Dev Team",
"email": "[email protected]",
"url": "https://yazilimcimekani.github.io"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yazilimcimekani/mdoctor/issues"
Expand Down
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { clear } = require('./commands/');

module.exports = function cli(args) {
this.version = 'Version 1.0.0';
this.version = 'Version 0.0.1-beta';

const commands = [
{
Expand Down

0 comments on commit 6b6887d

Please sign in to comment.