update deps
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
shibao 2022-05-06 20:31:16 -04:00
parent 085411132d
commit 299f227fec
4 changed files with 4041 additions and 4489 deletions

View File

@ -6,6 +6,7 @@
to set the default locale for the application. to set the default locale for the application.
- Add involvement links to home page - Add involvement links to home page
- Fix button text-wrapping - Fix button text-wrapping
- Update dependencies
# v0.5.1 # v0.5.1
- Add French translation: Thank you [duponin](https://udongein.xyz/users/duponin)! - Add French translation: Thank you [duponin](https://udongein.xyz/users/duponin)!

8483
assets/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -19,7 +19,7 @@
"devDependencies": { "devDependencies": {
"@babel/core": "^7.15.0", "@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0", "@babel/preset-env": "^7.15.0",
"autoprefixer": "^10.2.6", "autoprefixer": "^10.4.7",
"babel-loader": "^8.2.2", "babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0", "copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.7", "css-loader": "^5.2.7",
@ -28,14 +28,14 @@
"hard-source-webpack-plugin": "^0.13.1", "hard-source-webpack-plugin": "^0.13.1",
"mini-css-extract-plugin": "^1.6.0", "mini-css-extract-plugin": "^1.6.0",
"node-sass": "^7.0.1", "node-sass": "^7.0.1",
"postcss": "^8.3.6", "postcss": "^8.4.13",
"postcss-import": "^14.0.2", "postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1", "postcss-loader": "^6.1.1",
"postcss-preset-env": "^7.3.1", "postcss-preset-env": "^7.3.1",
"sass-loader": "^12.1.0", "sass-loader": "^12.1.0",
"standard": "^16.0.4", "standard": "^16.0.4",
"style-loader": "^3.2.1", "style-loader": "^3.2.1",
"tailwindcss": "^2.2.7", "tailwindcss": "^3.0.24",
"terser-webpack-plugin": "^5.1.3", "terser-webpack-plugin": "^5.1.3",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.8.0", "webpack-cli": "^4.8.0",

View File

@ -1,24 +1,18 @@
const colors = require('tailwindcss/colors') const colors = require('tailwindcss/colors')
module.exports = { module.exports = {
purge: [ content: [
'../lib/**/*.ex', '../lib/**/*.{ex,heex,leex,eex}',
'../lib/**/*.heex',
'../lib/**/*.leex',
'../lib/**/*.eex',
'./js/**/*.js' './js/**/*.js'
], ],
darkMode: 'media',
theme: { theme: {
colors: { colors: {
transparent: 'transparent', transparent: 'transparent',
current: 'currentColor', current: 'currentColor',
primary: colors.gray, primary: colors.gray,
black: colors.black, black: colors.black,
white: colors.white, white: colors.white,
gray: colors.trueGray, gray: colors.neutral,
indigo: colors.indigo, indigo: colors.indigo,
red: colors.rose, red: colors.rose,
yellow: colors.amber yellow: colors.amber
@ -45,11 +39,5 @@ module.exports = {
} }
} }
}, },
variants: {
extend: {
backgroundColor: ['active'],
borderColor: ['active']
}
},
plugins: [] plugins: []
} }