Skip to content

Commit 33d4f92

Browse files
committed
chore: prep for first release
1 parent 6b73587 commit 33d4f92

File tree

228 files changed

+6952
-2477
lines changed

Some content is hidden

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

228 files changed

+6952
-2477
lines changed

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Dependencies
2+
node_modules/
3+
jspm_packages
4+
5+
package-lock.json
6+
*/**/yarn.lock
7+
/.yarn
8+
.pnpm-store
9+
bun.lockb
10+
11+
# VSCode
12+
.vscode
13+
14+
# OSX
15+
.DS_Store
16+
.AppleDouble
17+
.LSOverride
18+
19+
# Files that might appear in the root of a volume
20+
.DocumentRevisions-V100
21+
.fseventsd
22+
.Spotlight-V100
23+
.TemporaryItems
24+
.Trashes
25+
.VolumeIcon.icns
26+
.com.apple.timemachine.donotpresent

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
### Changelog
2+
3+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4+
5+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6+
7+
#### 1.0.0
8+
9+
- feat: vueform laravel [`2d9ab45`](https://github.com/vueform/create-vueform/commit/2d9ab45417b75d43f9ae6fa97e57e22b17e86129)
10+
- feat: vueform astro material, bootstrap [`23f5959`](https://github.com/vueform/create-vueform/commit/23f5959067ef67d33ffed1fa153a06c59921b5e0)
11+
- feat: vueform vite + nuxt templates [`5af6195`](https://github.com/vueform/create-vueform/commit/5af6195f67c580f8008eee4594a246f72b14cc5c)
12+
- feat: vueform astro tailwinds [`3e7d744`](https://github.com/vueform/create-vueform/commit/3e7d744e639ec4380619ad51c38bd92962379776)
13+
- feat: builder nuxt, astro tailwind [`6585088`](https://github.com/vueform/create-vueform/commit/65850888fca07d48bfe91ff1bec77a24d31ef688)
14+
- feat: builder vite tailwind [`3b4c65f`](https://github.com/vueform/create-vueform/commit/3b4c65f8d679eeb17e8c3f098e0b3a8b8c984bc4)
15+
- feat: beatify, graceful exit, composer [`6b73587`](https://github.com/vueform/create-vueform/commit/6b7358754914001f882c91641c8ce189c344d0bd)
16+
- feat: vueform astro vueform ts [`1903929`](https://github.com/vueform/create-vueform/commit/1903929cca91e016b5a77d275587262530450781)
17+
- feat: builder laravel [`408dd5a`](https://github.com/vueform/create-vueform/commit/408dd5a0191d672a4961a82313f4e8eef4e23e52)
18+
- feat: vueform astro vueform js [`1b5bbc3`](https://github.com/vueform/create-vueform/commit/1b5bbc3188343657ca19d363275e0af506bc0fc3)

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2020-present - Adam Berecz
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# create-vueform
2+

build.config.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { defineBuildConfig } from 'unbuild'
2+
import license from 'rollup-plugin-license'
3+
4+
export default defineBuildConfig({
5+
entries: ['src/index'],
6+
clean: true,
7+
rollup: {
8+
inlineDependencies: true,
9+
esbuild: {
10+
target: 'node18',
11+
minify: true,
12+
},
13+
},
14+
alias: {
15+
prompts: 'prompts/lib/index.js',
16+
},
17+
plugins: [
18+
license({
19+
banner: {
20+
content: `Vueform CLI v<%= pkg.version %> (https://github.com/vueform/create-vueform)\n` +
21+
`Copyright (c) <%= moment().format('YYYY') %> Adam Berecz <[email protected]>\n` +
22+
`Licensed under the MIT License`,
23+
commentStyle: 'ignored',
24+
}
25+
})
26+
]
27+
})

dist/index.mjs

Lines changed: 63 additions & 0 deletions
Large diffs are not rendered by default.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/usr/bin/env node
2-
import "./src/test.js";
2+
import './dist/index.mjs'

0 commit comments

Comments
 (0)