diff --git a/LICENSE b/LICENSE index e36cb63..be67f0d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Matt Walters +Copyright (c) 2017 {[FULL_NAME]} Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 5869acc..aa2600c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# meta-docker -docker plugin for meta +# meta-{[PLUGIN_NAME]} +{[PLUGIN_NAME]} plugin for meta diff --git a/bin/meta-docker b/bin/meta-{[PLUGIN_NAME]} similarity index 65% rename from bin/meta-docker rename to bin/meta-{[PLUGIN_NAME]} index 347cabf..dd7ae64 100755 --- a/bin/meta-docker +++ b/bin/meta-{[PLUGIN_NAME]} @@ -5,12 +5,12 @@ let loaded = false; if (loaded) return process.kill(); const program = require('commander'); -const debug = require('debug')('meta-docker'); +const debug = require('debug')('meta-{[PLUGIN_NAME]}'); program // .command('checkout', 'checkout a common branch across all repositories') // .command('clone', 'clone meta and child repositories') - // .command('status', 'docker status of meta and child repositories') + // .command('status', '{[PLUGIN_NAME]} status of meta and child repositories') .parse(process.argv); loaded = true; \ No newline at end of file diff --git a/index.js b/index.js index 4e17e33..7c9d037 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,6 @@ module.exports.register = (program) => { program - .command('docker', 'run docker commands for your meta repo and child git repositories') + .command('{[PLUGIN_NAME]}', 'run {[PLUGIN_NAME]} commands for your meta repo and child git repositories') } \ No newline at end of file diff --git a/package.json b/package.json index afd7daa..3f6d912 100644 --- a/package.json +++ b/package.json @@ -1,32 +1,32 @@ { - "name": "meta-docker", - "version": "0.0.12", - "description": "docker plugin for meta", + "name": "meta-{[PLUGIN_NAME]}", + "version": "0.0.0", + "description": "{[PLUGIN_NAME]} plugin for meta", "main": "index.js", "bin": { - "meta-docker": "./bin/meta-docker" + "meta-{[PLUGIN_NAME]}": "./bin/meta-{[PLUGIN_NAME]}" }, "scripts": { "test": "npm test" }, "repository": { "type": "git", - "url": "git+ssh://git@github.com/mateodelnorte/meta-docker.git" + "url": "git+ssh://git@github.com/{[GITHUB_USERNAME]}/meta-{[PLUGIN_NAME]}.git" }, "keywords": [ - "docker", + "{[PLUGIN_NAME]}", "meta", "repo", "repository", "metarepository", "metarepo" ], - "author": "hi@iammattwalters.com", + "author": "{[GITHUB_EMAIL]}", "license": "ISC", "bugs": { - "url": "https://github.com/mateodelnorte/meta/issues" + "url": "https://github.com/{[GITHUB_USERNAME]}/meta/issues" }, - "homepage": "https://github.com/mateodelnorte/meta-docker#readme", + "homepage": "https://github.com/{[GITHUB_USERNAME]}/meta-{[PLUGIN_NAME]}#readme", "dependencies": { "chalk": "^1.1.3", "commander": "^2.9.0",