Skip to content

Commit

Permalink
🎉first publish
Browse files Browse the repository at this point in the history
  • Loading branch information
SoonIter committed Aug 7, 2022
0 parents commit e1a6ff9
Show file tree
Hide file tree
Showing 12 changed files with 2,081 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
node_modules
dist
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

dist

# IDE
.idea
auto-imports.d.ts
.eslintrc-auto-import.json
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
dist/
lib/
src/defaultFiles/
pnpm-lock.yaml
11 changes: 11 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"arrowParens": "always",
"htmlWhitespaceSensitivity": "ignore",
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"quoteProps": "consistent"
}
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<title>Vite + TS + Solid App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

<script src="/src/index.tsx" type="module"></script>
</body>
</html>
28 changes: 28 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "vite-template-solid",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"format": "prettier -w ."
},
"dependencies": {
"@solidjs/router": "^0.4.2",
"solid-js": "^1.4.8"
},
"devDependencies": {
"prettier": "^2.7.1",
"@iconify-json/logos": "^1.1.14",
"@unocss/core": "^0.45.5",
"@unocss/preset-attributify": "^0.45.5",
"@unocss/preset-icons": "^0.45.5",
"@unocss/preset-uno": "^0.45.5",
"typescript": "^4.7.4",
"unocss": "^0.45.5",
"unplugin-auto-import": "^0.11.1",
"unplugin-icons": "^0.14.8",
"vite": "^3.0.4",
"vite-plugin-solid": "^2.3.0"
}
}
Loading

0 comments on commit e1a6ff9

Please sign in to comment.