Skip to content

Commit a4c573b

Browse files
committed
🔖 Update dependencies and release v0.2.0.
1 parent 2492fc6 commit a4c573b

3 files changed

Lines changed: 13 additions & 12 deletions

File tree

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "requirex-postcss-bundle",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "PostCSS bundled for requirex",
55
"main": "dist/index.js",
66
"browser": "dist/index.min.js",
@@ -22,17 +22,17 @@
2222
"@types/autoprefixer": "^9.6.1",
2323
"@types/cssnano": "^4.0.0",
2424
"@types/postcss-url": "^8.0.1",
25-
"autoprefixer": "^9.6.5",
25+
"autoprefixer": "^9.7.1",
2626
"cssnano": "^4.1.10",
27-
"postcss": "^7.0.18",
27+
"postcss": "^7.0.21",
2828
"postcss-import": "^12.0.1",
2929
"postcss-safe-parser": "^4.0.1",
3030
"postcss-url": "^8.0.0",
31-
"requirex": "^0.1.5",
31+
"requirex": "^0.2.0",
3232
"safe-buffer": "^5.2.0",
3333
"string_decoder": "^1.3.0",
3434
"sugarss": "^2.0.0",
35-
"typescript": "^3.6.4",
36-
"uglify-js": "^3.6.2"
35+
"typescript": "^3.7.2",
36+
"uglify-js": "^3.6.9"
3737
}
3838
}

src/index.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import * as postcss from 'postcss';
2-
import * as safeParser from 'postcss-safe-parser';
3-
import * as autoprefixer from 'autoprefixer';
4-
import * as cssnano from 'cssnano';
5-
import * as atImport from 'postcss-import';
6-
import * as atUrl from 'postcss-url';
1+
import postcss from 'postcss';
2+
import safeParser from 'postcss-safe-parser';
3+
import autoprefixer from 'autoprefixer';
4+
import cssnano from 'cssnano';
5+
import atImport from 'postcss-import';
6+
import atUrl from 'postcss-url';
77

88
// Ensure custom URL resolution support gets bundled.
99
import('postcss-url/src/type/custom');

src/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"declaration": true,
55
"declarationDir": "../dist",
66
"emitDeclarationOnly": true,
7+
"esModuleInterop": true,
78
"lib": [ "dom", "es5", "es2015.collection", "es2015.promise" ],
89
"moduleResolution": "node",
910
"noImplicitAny": true,

0 commit comments

Comments
 (0)