Skip to content

Commit ed147f4

Browse files
committed
v1.0.3
1 parent b2954bd commit ed147f4

File tree

108 files changed

+1452
-1350
lines changed

Some content is hidden

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

108 files changed

+1452
-1350
lines changed

.gitignore

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1-
node_modules
2-
dist
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/
25+
26+
# locks
327
pnpm-lock.yaml

.prettierrc.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/** @type {import("prettier").Config} */
2+
const config = {
3+
semi: false,
4+
singleQuote: true,
5+
printWidth: 999999999999,
6+
htmlWhitespaceSensitivity: 'ignore',
7+
}
8+
9+
export default config

.vscode/settings.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
2-
"files.associations": {
3-
"*.html.txt": "html",
4-
"*.css.txt": "css",
5-
"*.scss.txt": "scss",
6-
"*.js.txt": "javascript",
7-
},
82
"html-css-class-completion.includeGlobPattern": "node_modules/bootstrap/dist/css/bootstrap.css",
93
"html-css-class-completion.excludeGlobPattern": "!node_modules/bootstrap/dist/css/bootstrap.css",
4+
"html-css-class-completion.HTMLLanguages": [
5+
"html",
6+
"astro"
7+
]
108
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v1.0.3
2+
- Update docs
3+
- Simplify types
4+
15
v1.0.2
26
- Fix types
37

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 use-bootstrap
3+
Copyright (c) 2024 Use Bootstrap
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

astro.config.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import { defineConfig } from 'astro/config'
2+
import solidJs from '@astrojs/solid-js'
3+
4+
// https://astro.build/config
5+
export default defineConfig({
6+
integrations: [solidJs()],
7+
devToolbar: {
8+
enabled: false,
9+
},
10+
build: {
11+
format: 'file',
12+
assets: 'assets',
13+
},
14+
outDir: 'docs',
15+
server: {
16+
port: 3000,
17+
},
18+
})

docs/assets/Demo-CrKb7gcW.js

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

docs/assets/Home-BxSFTKNV.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/assets/Install-CNfPK-5U.js

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

docs/assets/Methods-DZsMO_Hu.js

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

0 commit comments

Comments
 (0)