Skip to content

Commit 8360159

Browse files
authored
V0.7: Merge pull request #151 from fulldotdev/astro-blocks
v0.7 (astro-blocks)
2 parents 68f2bd6 + 1bde105 commit 8360159

File tree

908 files changed

+38145
-16022
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

908 files changed

+38145
-16022
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true

.env.example

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: 'Bug report'
1+
name: "Bug report"
22
description: Report a bug or issue
3-
labels: ['bug']
3+
labels: ["bug"]
44
body:
55
- type: textarea
66
id: description

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
2-
contact_links:
2+
contact_buttons:
33
- name: Add your site to our showcase
44
url: https://github.com/fulldotdev/ui/blob/main/CONTRIBUTING.md#showcase
55
about: Add your project to the showcase page and get featured on our website.

.github/ISSUE_TEMPLATE/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: 'Documentation'
1+
name: "Documentation"
22
description: Issues and suggestions regarding documentation
3-
labels: ['docs']
3+
labels: ["docs"]
44
body:
55
- type: textarea
66
id: description

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: 'Feature'
1+
name: "Feature"
22
description: Propose and discuss improvements
3-
labels: ['feature']
3+
labels: ["feature"]
44
body:
55
- type: textarea
66
id: description

.github/ISSUE_TEMPLATE/support.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: 'Support'
1+
name: "Support"
22
description: Ask a question or request help
3-
labels: ['support']
3+
labels: ["support"]
44
body:
55
- type: textarea
66
id: description

.github/pull_request_template.md

Whitespace-only changes.

.github/workflows/release.yml

Lines changed: 0 additions & 99 deletions
This file was deleted.

.gitignore

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
1-
# build output
2-
**/dist
3-
**/build
4-
**/out
5-
**/.astro
6-
**/.jampack
7-
**/.core
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
82

93
# dependencies
10-
node_modules/
11-
**/node_modules
12-
/.pnp
4+
node_modules
5+
.pnp
136
.pnp.js
14-
.yarn/install-state.gz
157

16-
# logs
17-
**/npm-debug.log*
18-
**/yarn-debug.log*
19-
**/yarn-error.log*
20-
**/pnpm-debug.log*
8+
# astro
9+
.astro/
10+
dist/
11+
.netlify/
2112

22-
# environment variables
23-
.env
24-
.env.production
25-
**/.env
26-
**/.env.*
27-
**/.env*.local
28-
!**/.env.example
29-
30-
# macOS-specific files
13+
# misc
3114
.DS_Store
32-
**/.DS_Store
3315
*.pem
16+
17+
# debug
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*
21+
.pnpm-debug.log*
22+
23+
# local env files
24+
.env
25+
.env.local
26+
.env.development.local
27+
.env.test.local
28+
.env.production.local
29+
30+
# ide
31+
.idea
32+
.fleet
33+
.vscode
34+

0 commit comments

Comments
 (0)