Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/tailwindcss
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.2
Choose a base ref
...
head repository: nuxt-modules/tailwindcss
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.3
Choose a head ref
  • 4 commits
  • 6 files changed
  • 4 contributors

Commits on Feb 6, 2020

  1. fix: tests using nuxt

    atinux committed Feb 6, 2020
    Copy the full SHA
    6b9af17 View commit details

Commits on Feb 18, 2020

  1. Per Tailwind's docs, base and components should not be purged. (#65)

    per https://tailwindcss.com/docs/controlling-file-size/ base and components should not be purged.  I found this out the hard way after spending 3h trying to figure out why my local dev env was rendering different css than prod :)
    hecktarzuli authored Feb 18, 2020
    Copy the full SHA
    4057e88 View commit details
  2. chore(deps): update all non-major dependencies (#63)

    Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
    Co-authored-by: Sébastien Chopin <seb@nuxtjs.com>
    3 people authored Feb 18, 2020
    Copy the full SHA
    f342802 View commit details
  3. 1.3.3

    atinux committed Feb 18, 2020
    Copy the full SHA
    f711f42 View commit details
Showing with 75 additions and 307 deletions.
  1. +2 −0 lib/templates/tailwind.css
  2. +6 −6 package.json
  3. +1 −1 test/config.test.js
  4. +1 −1 test/fail.test.js
  5. +1 −1 test/ok.test.js
  6. +64 −298 yarn.lock
2 changes: 2 additions & 0 deletions lib/templates/tailwind.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* purgecss start ignore */
@import 'tailwindcss/base';
@import 'tailwindcss/components';
/* purgecss end ignore */
@import 'tailwindcss/utilities';
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/tailwindcss",
"version": "1.3.2",
"version": "1.3.3",
"description": "TailwindCSS module for Nuxt.js",
"license": "MIT",
"contributors": [
@@ -33,20 +33,20 @@
"@babel/preset-env": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-config": "^2.0.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"codecov": "^3.6.4",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"eslint-plugin-vue": "^6.2.1",
"get-port": "^5.1.1",
"husky": "^4.2.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"nuxt": "^2.11.0",
"request": "latest",
2 changes: 1 addition & 1 deletion test/config.test.js
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ jest.setTimeout(60000)

const { join } = require('path')
const { remove } = require('fs-extra')
const { Nuxt, Builder } = require('nuxt-edge')
const { Nuxt, Builder } = require('nuxt')
const request = require('request-promise-native')
const getPort = require('get-port')
const logger = require('@/logger')
2 changes: 1 addition & 1 deletion test/fail.test.js
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ jest.setTimeout(60000)
require('fs-extra').pathExists = jest.fn().mockImplementation(() => Promise.resolve(false))
require('fs-extra').copy = jest.fn().mockImplementation(() => Promise.reject(new Error('Error when copy')))

const { Nuxt, Builder } = require('nuxt-edge')
const { Nuxt, Builder } = require('nuxt')
const logger = require('@/logger')
const config = require('../example/nuxt.config')

2 changes: 1 addition & 1 deletion test/ok.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jest.setTimeout(60000)

const { join } = require('path')
const { Nuxt, Builder } = require('nuxt-edge')
const { Nuxt, Builder } = require('nuxt')
const request = require('request-promise-native')
const getPort = require('get-port')
const logger = require('@/logger')
Loading