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/typescript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @nuxt/types@0.4.1
Choose a base ref
...
head repository: nuxt/typescript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @nuxt/types@0.5.0
Choose a head ref
  • 3 commits
  • 8 files changed
  • 3 contributors

Commits on Dec 1, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2631980 View commit details
  2. feat(types): add postcss build types (#223)

    * feat(types): add postcss build types
    
    * style(types): alphabetise
    
    * fix: remove extraneous comma
    
    Co-Authored-By: Kevin Marrec <kevin@marrec.io>
    danielroe and kevinmarrec committed Dec 1, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7268990 View commit details
  3. chore(release): publish

     - @nuxt/types@0.5.0
     - @nuxt/typescript-build@0.3.7
     - @nuxt/typescript-runtime@0.2.7
    kevinmarrec committed Dec 1, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b5cd531 View commit details
16 changes: 16 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.5.0](https://github.com/nuxt/typescript/compare/@nuxt/types@0.4.1...@nuxt/types@0.5.0) (2019-12-01)


### Bug Fixes

* **types:** improve consistency with class nuxtEnv ([#222](https://github.com/nuxt/typescript/issues/222)) ([2631980](https://github.com/nuxt/typescript/commit/26319806ff4f5b9c81b34f0859e3352365e4e095))


### Features

* **types:** add postcss build types ([#223](https://github.com/nuxt/typescript/issues/223)) ([7268990](https://github.com/nuxt/typescript/commit/7268990a06c6d3c8b20d1dbf312e7a3fbfd05cc4))





## [0.4.1](https://github.com/nuxt/typescript/compare/@nuxt/types@0.4.0...@nuxt/types@0.4.1) (2019-12-01)


73 changes: 54 additions & 19 deletions packages/types/config/build.d.ts
Original file line number Diff line number Diff line change
@@ -3,24 +3,26 @@
* Documentation: https://nuxtjs.org/api/configuration-build
*/

import { TransformOptions, PluginItem } from '@babel/core'
import { Options as AutoprefixerOptions } from 'autoprefixer'
import { Options as FileLoaderOptions } from 'file-loader'
import { Options as HtmlMinifierOptions } from 'html-minifier'
import * as Less from 'less'
import { Options as SassOptions } from 'node-sass'
import { Options as OptimizeCssAssetsWebpackPluginOptions } from 'optimize-css-assets-webpack-plugin'
import { Plugin as PostcssPlugin } from 'postcss'
import { Options as PugOptions } from 'pug'
import { TerserPluginOptions } from 'terser-webpack-plugin'
import { VueLoaderOptions } from 'vue-loader'
import {
Configuration as WebpackConfiguration,
Loader as WebpackLoader,
Options as WebpackOptions,
Plugin as WebpackPlugin
} from 'webpack'
import { TransformOptions, PluginItem } from '@babel/core'
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'
import { Options as WebpackDevMiddlewareOptions } from 'webpack-dev-middleware'
import { Options as WebpackHotMiddlewareOptions } from 'webpack-hot-middleware'
import { Options as HtmlMinifierOptions } from 'html-minifier'
import { Options as OptimizeCssAssetsWebpackPluginOptions } from 'optimize-css-assets-webpack-plugin'
import { TerserPluginOptions } from 'terser-webpack-plugin'
import { Options as FileLoaderOptions } from 'file-loader'
import { Options as PugOptions } from 'pug'
import * as Less from 'less'
import { Options as SassOptions } from 'node-sass'
import { VueLoaderOptions } from 'vue-loader'

type CssLoaderUrlFunction = (url: string, resourcePath: string) => boolean
type CssLoaderImportFunction = (parsedImport: string, resourcePath: string) => boolean
@@ -70,28 +72,64 @@ interface NuxtConfigurationLoaders {
}
}

interface NuxtBabelPresetEnv {
envName: 'client' | 'modern' | 'server'
interface NuxtWebpackEnv {
isClient: boolean
isDev: boolean
isLegacy: boolean
isModern: boolean
isServer: boolean
}

interface NuxtBabelPresetEnv {
envName: 'client' | 'modern' | 'server'
}

interface NuxtBabelOptions extends Pick<TransformOptions, Exclude<keyof TransformOptions, 'presets'>> {
cacheCompression?: boolean
cacheDirectory?: boolean
cacheIdentifier?: string
customize?: string | null
presets?: ((env: NuxtBabelPresetEnv, defaultPreset: [string, object]) => PluginItem[] | void) | PluginItem[] | null
presets?: ((env: NuxtBabelPresetEnv & NuxtWebpackEnv, defaultPreset: [string, object]) => PluginItem[] | void) | PluginItem[] | null
}

interface Warning {
message: string
name: string
}

interface PostcssOrderPresetFunctions {
cssnanoLast: (names: string[]) => string[]
presetEnvAndCssnanoLast: (names: string[]) => string[]
presetEnvLast: (names: string[]) => string[]
}
type PostcssOrderPreset = keyof PostcssOrderPresetFunctions
interface PostcssVariableMap {
customMedia: Record<string, string>
customProperties: Record<string, string>
customSelectors: Record<string, string>
environmentVariables?: Record<string, string>
}

interface PostcssConfiguration {
order?: PostcssOrderPreset | string[] | ((names: string[], presets: PostcssOrderPresetFunctions) => string[])
plugins?: {
[key: string]: false | { [key: string]: any }
}
preset?: {
autoprefixer?: false | AutoprefixerOptions
browsers?: string
exportTo?: string | string[] | Partial<PostcssVariableMap> | ((map: PostcssVariableMap) => Partial<PostcssVariableMap>)
features?: {
[key: string]: boolean | { [key: string]: any }
}
importFrom?: string | string[] | Partial<PostcssVariableMap> | (() => Partial<PostcssVariableMap>)
insertAfter?: { [key: string]: PostcssPlugin<any> }
insertBefore?: { [key: string]: PostcssPlugin<any> }
preserve?: boolean
stage?: 0 | 1 | 2 | 3 | 4 | false
}
}

export interface NuxtConfigurationBuild {
additionalExtensions?: string[]
analyze?: BundleAnalyzerPlugin.Options | boolean
@@ -104,14 +142,11 @@ export interface NuxtConfigurationBuild {
extend?(
config: WebpackConfiguration,
ctx: {
isDev: boolean,
isClient: boolean,
isServer: boolean,
loaders: NuxtConfigurationLoaders
}
} & NuxtWebpackEnv
): void
extractCSS?: boolean | Record<string, any>
filenames?: { [key in 'app' | 'chunk' | 'css' | 'img' | 'font' | 'video']?: (ctx: { isDev: boolean, isModern: boolean }) => string }
filenames?: { [key in 'app' | 'chunk' | 'css' | 'img' | 'font' | 'video']?: (ctx: NuxtWebpackEnv) => string }
friendlyErrors?: boolean
hardSource?: boolean
hotMiddleware?: WebpackHotMiddlewareOptions & { client: any /* TBD */ }
@@ -122,7 +157,7 @@ export interface NuxtConfigurationBuild {
optimizeCSS?: OptimizeCssAssetsWebpackPluginOptions | boolean
parallel?: boolean
plugins?: WebpackPlugin[]
postcss?: any // TBD
postcss?: string[] | boolean | PostcssConfiguration | (() => PostcssConfiguration)
profile?: boolean
publicPath?: string
quiet?: boolean
@@ -135,7 +170,7 @@ export interface NuxtConfigurationBuild {
standalone?: boolean
templates?: any
terser?: TerserPluginOptions | boolean
transpile?: (string | RegExp)[]
transpile?: (string | RegExp | ((context: NuxtWebpackEnv) => string | RegExp))[]
warningIgnoreFilters?: Array<(warn: Warning) => boolean>
watch?: string[]
}
3 changes: 2 additions & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxt/types",
"version": "0.4.1",
"version": "0.5.0",
"description": "Nuxt.js types",
"repository": "nuxt/typescript",
"license": "MIT",
@@ -9,6 +9,7 @@
],
"types": "index",
"dependencies": {
"@types/autoprefixer": "^9.6.1",
"@types/babel__core": "^7.1.3",
"@types/compression": "^1.0.1",
"@types/connect": "^3.4.32",
8 changes: 8 additions & 0 deletions packages/typescript-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.3.7](https://github.com/nuxt/typescript/compare/@nuxt/typescript-build@0.3.6...@nuxt/typescript-build@0.3.7) (2019-12-01)

**Note:** Version bump only for package @nuxt/typescript-build





## [0.3.6](https://github.com/nuxt/typescript/compare/@nuxt/typescript-build@0.3.5...@nuxt/typescript-build@0.3.6) (2019-12-01)

**Note:** Version bump only for package @nuxt/typescript-build
4 changes: 2 additions & 2 deletions packages/typescript-build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxt/typescript-build",
"version": "0.3.6",
"version": "0.3.7",
"description": "Nuxt.js TypeScript support",
"repository": "nuxt/typescript",
"license": "MIT",
@@ -15,7 +15,7 @@
"compile": "tsc"
},
"dependencies": {
"@nuxt/types": "0.4.1",
"@nuxt/types": "0.5.0",
"consola": "^2.11.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"ts-loader": "^6.2.1",
8 changes: 8 additions & 0 deletions packages/typescript-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.2.7](https://github.com/nuxt/typescript/compare/@nuxt/typescript-runtime@0.2.6...@nuxt/typescript-runtime@0.2.7) (2019-12-01)

**Note:** Version bump only for package @nuxt/typescript-runtime





## [0.2.6](https://github.com/nuxt/typescript/compare/@nuxt/typescript-runtime@0.2.5...@nuxt/typescript-runtime@0.2.6) (2019-12-01)

**Note:** Version bump only for package @nuxt/typescript-runtime
4 changes: 2 additions & 2 deletions packages/typescript-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxt/typescript-runtime",
"version": "0.2.6",
"version": "0.2.7",
"description": "Nuxt.js TypeScript Runtime support",
"repository": "nuxt/typescript",
"license": "MIT",
@@ -19,7 +19,7 @@
"compile": "tsc"
},
"dependencies": {
"@nuxt/types": "0.4.1",
"@nuxt/types": "0.5.0",
"ts-node": "^8.5.4",
"typescript": "~3.6"
},
15 changes: 14 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
@@ -2102,6 +2102,14 @@
resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a"
integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==

"@types/autoprefixer@^9.6.1":
version "9.6.1"
resolved "https://registry.yarnpkg.com/@types/autoprefixer/-/autoprefixer-9.6.1.tgz#8bfaf43d18f5cd59a269b7a2364e690cadcdf210"
integrity sha512-9aofAxm/OWxzu/Fq7lU/m2rX03f9Sr1OXF/3kEp6FNFYRFLgFcIUjxhNGgWqc5KMpXbkqxlJmc7wfab7jFj2dw==
dependencies:
"@types/browserslist" "*"
postcss "7.x.x"

"@types/babel__core@^7.1.0", "@types/babel__core@^7.1.3":
version "7.1.3"
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30"
@@ -2143,6 +2151,11 @@
"@types/connect" "*"
"@types/node" "*"

"@types/browserslist@*":
version "4.4.0"
resolved "https://registry.yarnpkg.com/@types/browserslist/-/browserslist-4.4.0.tgz#e2a5f7f8c7e97afb39f50812a77e5230d3ca2353"
integrity sha512-hrIjWSu7Hh96/rKlpChe58qHEwIZ0+F5Zf4QNdvSVP5LUXbaJM04g9tBjo702VTNqPZr5znEJeqNR3nAV3vJPg==

"@types/clean-css@*":
version "4.2.1"
resolved "https://registry.yarnpkg.com/@types/clean-css/-/clean-css-4.2.1.tgz#cb0134241ec5e6ede1b5344bc829668fd9871a8d"
@@ -9728,7 +9741,7 @@ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1:
indexes-of "^1.0.1"
uniq "^1.0.1"

postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.5, postcss@^7.0.6:
postcss@7.x.x, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.5, postcss@^7.0.6:
version "7.0.23"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.23.tgz#9f9759fad661b15964f3cfc3140f66f1e05eadc1"
integrity sha512-hOlMf3ouRIFXD+j2VJecwssTwbvsPGJVMzupptg+85WA+i7MwyrydmQAgY3R+m0Bc0exunhbJmijy8u8+vufuQ==