init-blueprint 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,15 @@
1
1
  How to make a blueprint (Ex: python-blueprint)
2
2
  1. Change the name of the blueprint project in package.json file:
3
3
  Ex: "name": "python-blueprint",
4
+ "bin": {
5
+ "python-blueprint": "create.js"
6
+ },
4
7
  2. Copy the template into BlueprintTemplate. The template include:
5
8
  - Basic files
6
- - Add git
7
9
  - Add gitignore file and change it from .gitignore=> gitignore file
8
10
  3. Add git to the blueprint, and change the root branch from master to main
11
+ - rm -rf .git
12
+ - Add git
9
13
  - git branch -m master main
10
14
  4. Create new repo in git
11
15
  - Add environment variables into the git repo: Project > Settings > CI/CD > Variables
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "init-blueprint",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A custom project blueprint",
5
5
  "main": "create.js",
6
6
  "bin": {