Skip to content

Commit a975daf

Browse files
authored
Merge pull request #2 from FranzDiebold/feat/v1.0.0
Feat/v1.0.0
2 parents f410792 + 3097238 commit a975daf

30 files changed

+2847
-2606
lines changed

Makefile

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,65 @@
1+
.PHONY: help
2+
help: ## Show this help.
3+
@egrep '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-22s\033[0m %s\n", $$1, $$2}'
14

25
.PHONY: install
3-
install:
6+
install: ## Install dependencies
47
npm install
58

69
.PHONY: test
7-
test:
10+
test: ## Run tests for both library and demo application
811
npm run test
912

1013
.PHONY: test-lib
11-
test-lib:
14+
test-lib: ## Run tests for library
1215
npm run test-lib
1316

1417
.PHONY: test-lib-ci
15-
test-lib-ci:
18+
test-lib-ci: ## Run tests for library (CI)
1619
npm run test-lib-ci
1720

1821
.PHONY: test-demo
19-
test-demo:
22+
test-demo: ## Run tests for demo application
2023
npm run test-demo
2124

2225
.PHONY: test-demo-ci
23-
test-demo-ci:
26+
test-demo-ci: ## Run tests for demo application (CI)
2427
npm run test-demo-ci
2528

2629
.PHONY: lint
27-
lint:
30+
lint: ## Lint both library and demo application
2831
npm run lint
2932

3033
.PHONY: lint-lib
31-
lint-lib:
34+
lint-lib: ## Lint library
3235
npm run lint-lib
3336

3437
.PHONY: lint-demo
35-
lint-demo:
38+
lint-demo: ## Lint demo application
3639
npm run lint-demo
3740

3841
.PHONY: build-lib
39-
build-lib:
42+
build-lib: ## Build library
4043
npm run build-lib
4144

4245
.PHONY: build-lib-schematics
43-
build-lib-schematics:
46+
build-lib-schematics: ## Build library schematics
4447
npm run build-lib-schematics
4548

4649
.PHONY: build-demo
47-
build-demo:
50+
build-demo: ## Build demo application
4851
npm run build-demo
4952

5053
.PHONY: publish-lib
51-
publish-lib:
54+
publish-lib: ## Publish library to npm
5255
npm run build-lib-prod
5356
npm run build-lib-schematics
5457
cd dist/ng-google-sheets-db && npm publish
5558

5659
.PHONY: serve-demo
57-
serve-demo:
60+
serve-demo: ## Run demo application locally
5861
npm run serve-demo
5962

6063
.PHONY: deploy-demo
61-
deploy-demo:
64+
deploy-demo: ## Deploy demo application to GitHub Pages
6265
npm run deploy-demo

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
<p align="center">
2+
<img width="75" src="./design/ng-google-sheets-db-logo.png" alt="ng-google-sheets-db logo">
3+
</p>
4+
15
# ng-google-sheets-db - Angular Google Sheets DB
26

37
[![Test, lint, build and deploy](https://github.com/FranzDiebold/ng-google-sheets-db-library/workflows/Test,%20lint,%20build%20and%20deploy/badge.svg)](https://github.com/FranzDiebold/ng-google-sheets-db-library/actions)
48
[![demo: app](https://img.shields.io/badge/demo-app-2ca467.svg)](https://franzdiebold.github.io/ng-google-sheets-db-library/)
59
[![demo: StackBlitz](https://img.shields.io/badge/demo-StackBlitz-1389fd.svg)](https://stackblitz.com/edit/ng-google-sheets-db-demo)
6-
[![Angular: v9](https://img.shields.io/badge/Angular-v9-DD0031.svg)](./projects/ng-google-sheets-db/package.json)
10+
[![Angular: v10](https://img.shields.io/badge/Angular-v10-DD0031.svg)](./projects/ng-google-sheets-db/package.json)
711
[![npm](https://img.shields.io/npm/v/ng-google-sheets-db.svg)](https://www.npmjs.com/package/ng-google-sheets-db)
812
[![npm](https://img.shields.io/npm/dm/ng-google-sheets-db.svg)](https://www.npmjs.com/package/ng-google-sheets-db)
913
[![license: MIT](https://img.shields.io/badge/license-MIT-brightgreen.svg)](./LICENSE)

design/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Design
2+
3+
## Logo
4+
5+
<img width="200" height="200" src="ng-google-sheets-db-logo.png">
6+
7+
## Colors
8+
9+
- green ![#2ca467](https://placehold.it/20/2ca467/000000?text=+) `#2ca467`
10+
- gray ![#606c76](https://placehold.it/20/606c76/000000?text=+) `#606c76`
11+
12+
## Preview image for social media
13+
14+
![ng-google-sheets-db social media preview image](ng-google-sheets-db-social-media-preview.png)

design/ng-google-sheets-db-logo.png

23 KB
Loading

design/ng-google-sheets-db-logo.svg

Lines changed: 4 additions & 0 deletions
Loading
Loading
-478 KB
Binary file not shown.

0 commit comments

Comments
 (0)