@shopify/typescript-configs
Advanced tools
Comparing version 2.0.2 to 3.0.0
@@ -10,2 +10,8 @@ # Changelog | ||
## [3.0.0] - 2020-06-04 | ||
### Breaking Change | ||
- Updated the `*.scss` and `*.css` types for esmodules [[#165](https://github.com/Shopify/web-foundation/pull/165)] | ||
## [2.0.2] - 2020-03-28 | ||
@@ -12,0 +18,0 @@ |
declare module '*.scss' { | ||
const content: any; | ||
export = content; | ||
const classNames: {[key: string]: string}; | ||
export default classNames; | ||
} | ||
declare module '*.css' { | ||
const content: any; | ||
export = content; | ||
const classNames: {[key: string]: string}; | ||
export default classNames; | ||
} |
{ | ||
"name": "@shopify/typescript-configs", | ||
"version": "2.0.2", | ||
"version": "3.0.0", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "A set of typescript configuration files that can be extended.", |
5661