Skip to content

Commit 7f72166

Browse files
author
Imran Momin
committed
updated the readme and version
1 parent b0501f8 commit 7f72166

File tree

3 files changed

+59
-53
lines changed

3 files changed

+59
-53
lines changed

src/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ Skip build process during deployment.
5353
This can be used when you are sure that you haven't changed anything and want to deploy with the latest artifact.
5454
This command causes the `--configuration` setting to have no effect.
5555

56+
#### --create <a name="no-build"></a>
57+
* __optional__
58+
* Default: `false` (string)
59+
* Example:
60+
* `ng deploy --create` – Will create a new site if there is not site id or the site id is invalid
5661

5762
## License
5863

src/deploy/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"create": {
3434
"type": "boolean",
3535
"default": false,
36-
"description": "Creates the site if it does not exists"
36+
"description": "Creates the site if it does not exists or no site id is set"
3737
}
3838
}
3939
}

src/package.json

Lines changed: 53 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,55 @@
11
{
2-
"name": "@netlify-builder/deploy",
3-
"version": "3.0.0",
4-
"description": "A Netlify builder schematics for deployment",
5-
"main": "index.js",
6-
"builders": "./builders.json",
7-
"schematics": "./collection.json",
8-
"ng-add": {
9-
"save": "devDependencies"
10-
},
11-
"repository": {
12-
"type": "git",
13-
"url": "git+https://github.com/santoshyadav198613/netlify-builder.git"
14-
},
15-
"scripts": {
16-
"build": "tsc -p tsconfig.json",
17-
"test": "ts-node node_modules/jasmine/bin/jasmine command/index_spec.ts"
18-
},
19-
"keywords": [
20-
"angular",
21-
"schematics",
22-
"cli",
23-
"angular-cli",
24-
"netlify",
25-
"deploy",
26-
"ng deploy",
27-
"ng-deploy",
28-
"netlify deploy",
29-
"netlify-deploy"
30-
],
31-
"author": "Santosh Yadav <[email protected]>",
32-
"contributors": [
33-
"Nitish Kumar Singh <[email protected]> (https://nitishk72.github.io)"
34-
],
35-
"license": "MIT",
36-
"bugs": {
37-
"url": "https://github.com/santoshyadav198613/netlify-builder/issues"
38-
},
39-
"homepage": "https://github.com/santoshyadav198613/netlify-builder#readme",
40-
"devDependencies": {
41-
"@types/jasmine": "3.5.6",
42-
"@types/node": "11.15.7",
43-
"jasmine": "3.5.0",
44-
"jasmine-node": "3.0.0",
45-
"ts-node": "8.6.2",
46-
"typescript": "3.7.3"
47-
},
48-
"dependencies": {
49-
"@angular-devkit/architect": "^0.900.0",
50-
"@angular-devkit/core": "^9.0.0",
51-
"schematics-utilities": "^2.0.0",
52-
"netlify": "^3.0.0"
53-
}
2+
"name": "@netlify-builder/deploy",
3+
"version": "3.1.0",
4+
"description": "A Netlify builder schematics for deployment",
5+
"main": "index.js",
6+
"builders": "./builders.json",
7+
"schematics": "./collection.json",
8+
"ng-add": {
9+
"save": "devDependencies"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/santoshyadav198613/netlify-builder.git"
14+
},
15+
"scripts": {
16+
"build": "tsc -p tsconfig.json",
17+
"test": "ts-node node_modules/jasmine/bin/jasmine command/index_spec.ts"
18+
},
19+
"keywords": [
20+
"angular",
21+
"schematics",
22+
"cli",
23+
"angular-cli",
24+
"netlify",
25+
"deploy",
26+
"ng deploy",
27+
"ng-deploy",
28+
"netlify deploy",
29+
"netlify-deploy"
30+
],
31+
"author": "Santosh Yadav <[email protected]>",
32+
"contributors": [
33+
"Nitish Kumar Singh <[email protected]> (https://nitishk72.github.io)",
34+
"Imran Momin <[email protected]>"
35+
],
36+
"license": "MIT",
37+
"bugs": {
38+
"url": "https://github.com/santoshyadav198613/netlify-builder/issues"
39+
},
40+
"homepage": "https://github.com/santoshyadav198613/netlify-builder#readme",
41+
"devDependencies": {
42+
"@types/jasmine": "3.5.6",
43+
"@types/node": "11.15.7",
44+
"jasmine": "3.5.0",
45+
"jasmine-node": "3.0.0",
46+
"ts-node": "8.6.2",
47+
"typescript": "3.7.3"
48+
},
49+
"dependencies": {
50+
"@angular-devkit/architect": "^0.900.0",
51+
"@angular-devkit/core": "^9.0.0",
52+
"schematics-utilities": "^2.0.0",
53+
"netlify": "^3.0.0"
54+
}
5455
}

0 commit comments

Comments
 (0)