Skip to content

Commit dd25c0c

Browse files
committed
chore(deps): update dependencies
1 parent 6f155c7 commit dd25c0c

File tree

8 files changed

+239
-203
lines changed

8 files changed

+239
-203
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
13
# dependencies
24
node_modules/
35

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 100,
3+
"singleQuote": true
4+
}

package.json

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
{
2+
"$schema": "https://json.schemastore.org/package",
23
"scripts": {
4+
"build": "snowpack build",
35
"start": "snowpack dev",
4-
"build": "snowpack build"
6+
"test": "echo \"Error: no test specified\" && exit 1"
7+
},
8+
"dependencies": {
9+
"alpinejs": "^3.5.1"
510
},
611
"devDependencies": {
712
"@snowpack/plugin-postcss": "^1.4.3",
8-
"@tailwindcss/forms": "^0.3.3",
9-
"@types/tailwindcss": "^2.2.1",
10-
"autoprefixer": "^10.3.1",
11-
"cssnano": "^5.0.7",
12-
"postcss": "^8.3.6",
13-
"snowpack": "^3.8.6",
14-
"tailwindcss": "^2.2.7"
15-
},
16-
"dependencies": {
17-
"alpinejs": "^3.2.3"
13+
"@tailwindcss/forms": "^0.3.4",
14+
"@types/tailwindcss": "^2.2.4",
15+
"autoprefixer": "^10.4.0",
16+
"cssnano": "^5.0.11",
17+
"postcss": "^8.3.11",
18+
"snowpack": "^3.8.8",
19+
"tailwindcss": "^2.2.19"
1820
}
1921
}

tailwind.config.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ const colors = require('tailwindcss/colors');
44
* @type { import('@types/tailwindcss/tailwind-config').TailwindConfig }
55
*/
66
module.exports = {
7-
darkMode: 'class',
7+
darkMode: 'media',
88
plugins: [require('@tailwindcss/forms')],
99
purge: ['./theme/**/*.ftl'],
10-
mode: 'jit',
1110
theme: {
1211
extend: {
1312
colors: {

theme/keywind/login/resources/dist/index.css

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

theme/keywind/login/resources/dist/index.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

theme/keywind/login/resources/dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

yarn.lock

+210-183
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)