Skip to content

Commit 15c145b

Browse files
authored
Merge pull request #1 from creativetimofficial/feature/v1.0.0
Feature: v1.0.0
2 parents f0ab58c + 34dd475 commit 15c145b

File tree

92 files changed

+18336
-287
lines changed

Some content is hidden

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

92 files changed

+18336
-287
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Autocloser
2+
on: [issues]
3+
jobs:
4+
autoclose:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Issue auto-closer
8+
uses: roots/issue-closer-action@v1.1
9+
with:
10+
repo-token: ${{ secrets.GITHUB_TOKEN }}
11+
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/tailwind-webapp-svelte?ref=tws-new-issue\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n"
12+
issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Change Log
2+
3+
## [1.0.0] 2020-09-29
4+
### Original Release
5+
- Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=tws-changelog)
6+
- Added design from Tailwind Starter Kit by Creative Tim

ISSUE_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!--
2+
IMPORTANT: Please use the following link to create a new issue:
3+
4+
https://www.creative-tim.com/new-issue/tailwind-webapp-svelte?ref=tws-new-issue
5+
6+
**If your issue was not created using the app above, it will be closed immediately.**
7+
-->
8+
9+
<!--
10+
Love Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:
11+
👉 https://www.creative-tim.com/bundles?ref=tws-new-issue
12+
👉 https://www.creative-tim.com?ref=tws-new-issue
13+
-->

LICENSE.md

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

README.md

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

package.json

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
11
{
22
"name": "tailwind-webapp-svelte",
33
"version": "1.0.0",
4+
"homepage": "https://demos.creative-tim.com/tailwind-webapp-svelte/",
5+
"description": "Tailwind WebApp Svelte - A free Tailwind CSS and Svelte WebApp template by Creative Tim.",
6+
"repository": "https://github.com/creativetimofficial/tailwind-webapp-svelte",
7+
"license": "MIT",
48
"scripts": {
59
"build": "rollup -c",
610
"dev": "rollup -c -w",
7-
"start": "sirv public"
11+
"start": "sirv public -s",
12+
"build:tailwind": "tailwind build public/assets/styles/index.css -o public/assets/styles/tailwind.css",
13+
"build:fontawesome": "mkdir -p public/assets/vendor/@fortawesome/fontawesome-free/webfonts && mkdir -p public/assets/vendor/@fortawesome/fontawesome-free/css && cp -a ./node_modules/@fortawesome/fontawesome-free/webfonts public/assets/vendor/@fortawesome/fontawesome-free/ && cp ./node_modules/@fortawesome/fontawesome-free/css/all.min.css public/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css",
14+
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && rm -rf public/build && npm install && npm run build:tailwind && npm run build:fontawesome && npm run dev"
815
},
916
"devDependencies": {
10-
"@rollup/plugin-commonjs": "14.0.0",
11-
"@rollup/plugin-node-resolve": "8.0.0",
12-
"rollup": "2.3.4",
17+
"@rollup/plugin-commonjs": "15.1.0",
18+
"@rollup/plugin-node-resolve": "9.0.0",
19+
"rollup": "2.28.1",
1320
"rollup-plugin-livereload": "2.0.0",
14-
"rollup-plugin-svelte": "6.0.0",
15-
"rollup-plugin-terser": "7.0.0",
16-
"svelte": "3.0.0"
21+
"rollup-plugin-svelte": "6.0.1",
22+
"rollup-plugin-terser": "7.0.2",
23+
"svelte": "3.26.0"
1724
},
1825
"dependencies": {
19-
"sirv-cli": "1.0.0"
26+
"@fortawesome/fontawesome-free": "5.14.0",
27+
"@popperjs/core": "2.5.1",
28+
"@rollup/plugin-alias": "3.1.1",
29+
"@tailwindcss/custom-forms": "0.2.1",
30+
"chart.js": "2.9.3",
31+
"sirv-cli": "1.0.6",
32+
"svelte-routing": "1.4.2",
33+
"tailwindcss": "1.8.10"
2034
}
2135
}

public/apple-icon.png

2.39 KB
Loading

public/assets/img/angular.jpg

22 KB
Loading

public/assets/img/bootstrap.jpg

17.7 KB
Loading
5.77 KB
Loading

0 commit comments

Comments
 (0)