Skip to content

Commit

Permalink
templatize
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickleet committed Apr 24, 2017
1 parent 0b45eec commit 4a4e539
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,2 +1,2 @@
# meta-docker
docker plugin for meta
# meta-{[PLUGIN_NAME]}
{[PLUGIN_NAME]} plugin for meta
4 changes: 2 additions & 2 deletions bin/meta-docker → bin/meta-{[PLUGIN_NAME]}
Expand Up @@ -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;
2 changes: 1 addition & 1 deletion 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')

}
18 changes: 9 additions & 9 deletions 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",
Expand Down

0 comments on commit 4a4e539

Please sign in to comment.