Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.14.1 #7816

Merged
merged 23 commits into from
Aug 4, 2020
Merged

v2.14.1 #7816

Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e295ae7
fix: add types for `build.corejs` option and use number (#7789)
rchl Jul 28, 2020
4db7e43
fix(cli): normalize win32 paths for `nuxt generate` cache snapshots (…
lihbr Jul 28, 2020
3d15263
fix(cli): generate still run cache when disabled (#7802)
lihbr Jul 29, 2020
0a4aacc
chore(deps): update dependency @types/serve-static to ^1.13.5 (#7793)
renovate[bot] Jul 29, 2020
2e1025f
fix(webpack): avoid grouping with default name (#7808)
pi0 Jul 30, 2020
19e68e7
fix(crawler): skip external link with no schema (#7806)
farnabaz Jul 30, 2020
afb469f
chore(deps): ignore defu3
pi0 Jul 30, 2020
0a3e0cf
examples(tailwindcss-purgecss) : update tailwindcss 0.6 to 1.6. using…
ChangJoo-Park Jul 30, 2020
e0b5203
chore: update yarn.lock
pi0 Jul 30, 2020
5909de7
fix: enforce name for all groups to avoid regression (#7808)
pi0 Jul 30, 2020
73a8753
chore(deps): update all non-major dependencies (#7811)
renovate[bot] Jul 30, 2020
ab30bbc
chore(stale): ignore feature request issues (#7828)
manniL Aug 1, 2020
3204f30
chore(deps): update all non-major dependencies (#7820)
renovate[bot] Aug 3, 2020
e6eae8f
chore(stale): add missing quote (#7844)
farnabaz Aug 4, 2020
f130901
fix(core, config): disabe esm cache (#7839)
clarkdo Aug 4, 2020
128c974
fix(vue-app): handle server-side routing errors (#7801)
matthieusieben Aug 4, 2020
adf0cb8
chore(deps): lock file maintenance (#7837)
renovate[bot] Aug 4, 2020
c16d199
chore(deps): update dependency caniuse-lite to ^1.0.30001110 (#7842)
renovate[bot] Aug 4, 2020
ec534d0
fix(router): optional dynamic routing in children routes (#7843)
farnabaz Aug 4, 2020
2eb4287
fix(utils): remove optional params in routes ending with `index` (#7845)
farnabaz Aug 4, 2020
c609b4b
fix(webpack): support string values for `corejsVersion` (#7849)
farnabaz Aug 4, 2020
bd3c34f
chore(deps): update `@nuxt/components` to 1.1.0
pi0 Aug 4, 2020
c30499d
v2.14.1
pi0 Aug 4, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ daysUntilClose: 7
staleLabel: stale
exemptLabels:
- "cmty:feature-request"
- "feature-request
farnabaz marked this conversation as resolved.
Show resolved Hide resolved
- "WIP"
- "pending"
- "discussion"
Expand Down
2 changes: 1 addition & 1 deletion examples/tailwindcss-purgecss/assets/css/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @import "tailwindcss/preflight";
*/
@tailwind preflight;
@tailwind base;

/**
* This injects any component classes registered by plugins.
Expand Down
2 changes: 1 addition & 1 deletion examples/tailwindcss-purgecss/components/MyComponent.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<button class="bg-blue hover:bg-blue-dark text-white font-bold py-2 px-4 rounded">
<button class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded">
My Component Button
</button>
</div>
Expand Down
13 changes: 1 addition & 12 deletions examples/tailwindcss-purgecss/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,10 @@ export default {
},

css: ['~/assets/css/tailwind.css'],

build: {
postcss: {
plugins: {
tailwindcss: path.join(__dirname, 'tailwind.js'),
autoprefixer: {},
'@fullhuman/postcss-purgecss': {
content: [
path.join(__dirname, './pages/**/*.vue'),
path.join(__dirname, './layouts/**/*.vue'),
path.join(__dirname, './components/**/*.vue')
],
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || [],
whitelist: ['html', 'body', 'nuxt-progress']
}
tailwindcss: path.join(__dirname, './tailwind.config.js')
}
}
}
Expand Down
4 changes: 1 addition & 3 deletions examples/tailwindcss-purgecss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
"nuxt": "^2.2.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.1.0",
"autoprefixer": "^9.3.1",
"tailwindcss": "^0.6.6"
"tailwindcss": "^1.6.0"
},
"prettier": {
"semi": false,
Expand Down
4 changes: 2 additions & 2 deletions examples/tailwindcss-purgecss/pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div>
<h2 class="mb-4 text-blue">
<h2 class="mb-4 text-blue-500">
Homepage
</h2>
<p class="mb-4 bg-grey-light p-4 text-sm rounded leading-normal">
<p class="mb-4 bg-grey-400 p-4 text-sm rounded leading-normal">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ut dolor placerat enim suscipit porttitor et sodales orci. In eget lorem a odio rhoncus finibus vel quis ex. Donec varius nisl ligula, vel finibus velit dignissim in.
</p>
<MyComponent />
Expand Down
20 changes: 20 additions & 0 deletions examples/tailwindcss-purgecss/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
const path = require('path')

module.exports = {
purge: {
enabled: true,
content: [
path.join(__dirname, './pages/**/*.vue'),
path.join(__dirname, './layouts/**/*.vue'),
path.join(__dirname, './components/**/*.vue')
],
options: {
whitelist: ['html', 'body', 'nuxt-progress']
}
},
theme: {
extend: {}
},
variants: {},
plugins: []
}