chore(deps): bump

This commit is contained in:
Liyas Thomas
2021-05-09 14:59:24 +00:00
committed by GitHub
parent 115ae93073
commit c6c8b7da6a
4 changed files with 7381 additions and 4826 deletions

View File

@@ -203,7 +203,6 @@ export default {
// TailwindCSS module configuration (https://github.com/nuxt-community/tailwindcss-module) // TailwindCSS module configuration (https://github.com/nuxt-community/tailwindcss-module)
tailwindcss: { tailwindcss: {
jit: true,
viewer: false, viewer: false,
}, },

12168
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -29,16 +29,16 @@
"acorn": "^8.2.4", "acorn": "^8.2.4",
"acorn-walk": "^8.1.0", "acorn-walk": "^8.1.0",
"esprima": "^4.0.1", "esprima": "^4.0.1",
"firebase": "^8.4.3", "firebase": "^8.5.0",
"graphql": "^15.5.0", "graphql": "^15.5.0",
"graphql-language-service-interface": "^2.8.3", "graphql-language-service-interface": "^2.8.3",
"lodash": "^4.17.20", "lodash": "^4.17.20",
"mustache": "^4.2.0", "mustache": "^4.2.0",
"nuxt": "^2.15.4", "nuxt": "^2.15.5",
"nuxt-i18n": "^6.26.0", "nuxt-i18n": "^6.27.0",
"paho-mqtt": "^1.1.0", "paho-mqtt": "^1.1.0",
"rxjs": "^7.0.0", "rxjs": "^7.0.0",
"socket.io-client": "^4.0.1", "socket.io-client": "^4.0.2",
"socketio-wildcard": "^2.0.0", "socketio-wildcard": "^2.0.0",
"tern": "^0.24.3", "tern": "^0.24.3",
"v-tooltip": "^2.1.3", "v-tooltip": "^2.1.3",
@@ -49,34 +49,31 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.14.0", "@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.13.15", "@babel/preset-env": "^7.13.15",
"@nuxt/types": "^2.15.4", "@nuxt/types": "^2.15.5",
"@nuxt/typescript-build": "^2.1.0", "@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/color-mode": "^2.0.5", "@nuxtjs/color-mode": "^2.0.5",
"@nuxtjs/google-analytics": "^2.4.0", "@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/google-fonts": "^1.3.0", "@nuxtjs/google-fonts": "^1.3.0",
"@nuxtjs/pwa": "^3.3.5", "@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/tailwindcss": "^4.0.3", "@nuxtjs/tailwindcss": "^4.1.1",
"@testing-library/jest-dom": "^5.12.0", "@testing-library/jest-dom": "^5.12.0",
"@types/lodash": "^4.14.168", "@types/lodash": "^4.14.168",
"@vue/test-utils": "^1.2.0", "@vue/test-utils": "^1.2.0",
"babel-core": "^7.0.0-bridge.0", "babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3", "babel-jest": "^26.6.3",
"eslint": "^7.25.0", "eslint": "^7.26.0",
"eslint-plugin-vue": "^7.9.0", "eslint-plugin-vue": "^7.9.0",
"husky": "^6.0.0", "husky": "^6.0.0",
"jest": "^26.6.3", "jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2", "jest-serializer-vue": "^2.0.2",
"postcss": "^8.2.13", "postcss": "^8.2.14",
"prettier": "^2.2.1", "prettier": "^2.2.1",
"pretty-quick": "^3.1.0", "pretty-quick": "^3.1.0",
"raw-loader": "^4.0.2", "raw-loader": "^4.0.2",
"sass": "^1.32.12", "sass": "^1.32.12",
"sass-loader": "^10.1.1", "sass-loader": "^10.1.1",
"ts-jest": "^26.5.5", "ts-jest": "^26.5.6",
"vue-jest": "^3.0.7", "vue-jest": "^3.0.7",
"worker-loader": "^3.0.8" "worker-loader": "^3.0.8"
}, },

View File

@@ -8,6 +8,7 @@ import colors from "tailwindcss/colors"
export default { export default {
dark: "class", dark: "class",
mode: "jit",
corePlugins: { corePlugins: {
float: false, float: false,
clear: false, clear: false,
@@ -49,13 +50,11 @@ export default {
}, },
variants: {}, variants: {},
plugins: [], plugins: [],
purge: { purge: [
content: [ "components/**/*.vue",
"components/**/*.vue", "layouts/**/*.vue",
"layouts/**/*.vue", "pages/**/*.vue",
"pages/**/*.vue", "plugins/**/*.js",
"plugins/**/*.js", "nuxt.config.js",
"nuxt.config.js", ],
],
},
} }