@vue/component-compiler-utils
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -0,1 +1,11 @@ | ||
<a name="1.2.1"></a> | ||
## [1.2.1](https://github.com/vuejs/component-compiler-utils/compare/v1.2.0...v1.2.1) (2018-04-26) | ||
### Bug Fixes | ||
* postcss import ([c845a80](https://github.com/vuejs/component-compiler-utils/commit/c845a80)) | ||
<a name="1.2.0"></a> | ||
@@ -2,0 +12,0 @@ # [1.2.0](https://github.com/vuejs/component-compiler-utils/compare/v1.1.0...v1.2.0) (2018-04-26) |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const postcss_1 = require("postcss"); | ||
const postcss = require('postcss'); | ||
const trim_1 = require("./stylePlugins/trim"); | ||
@@ -34,3 +34,3 @@ const scoped_1 = require("./stylePlugins/scoped"); | ||
try { | ||
result = postcss_1.default(plugins).process(source, postCSSOptions); | ||
result = postcss(plugins).process(source, postCSSOptions); | ||
// force synchronous transform (we know we only have sync plugins) | ||
@@ -37,0 +37,0 @@ code = result.css; |
@@ -1,2 +0,3 @@ | ||
import postcss, { ProcessOptions, LazyResult } from 'postcss' | ||
const postcss = require('postcss') | ||
import { ProcessOptions, LazyResult } from 'postcss' | ||
import trimPlugin from './stylePlugins/trim' | ||
@@ -3,0 +4,0 @@ import scopedPlugin from './stylePlugins/scoped' |
{ | ||
"name": "@vue/component-compiler-utils", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Lower level utilities for compiling Vue single file components", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48495
1342