@linaria/core
Advanced tools
Comparing version 3.0.0-beta.20 to 3.0.0-beta.21
@@ -11,3 +11,2 @@ "use strict"; | ||
var _default = css; | ||
exports.default = _default; | ||
//# sourceMappingURL=css.js.map | ||
exports.default = _default; |
@@ -1,2 +0,1 @@ | ||
"use strict"; | ||
//# sourceMappingURL=CSSProperties.js.map | ||
"use strict"; |
@@ -50,3 +50,2 @@ "use strict"; | ||
var _default = cx; | ||
exports.default = _default; | ||
//# sourceMappingURL=cx.js.map | ||
exports.default = _default; |
@@ -14,3 +14,2 @@ "use strict"; | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
//# sourceMappingURL=index.js.map | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
@@ -1,2 +0,1 @@ | ||
"use strict"; | ||
//# sourceMappingURL=StyledMeta.js.map | ||
"use strict"; |
{ | ||
"name": "@linaria/core", | ||
"description": "Blazing fast zero-runtime CSS in JS library", | ||
"version": "3.0.0-beta.20", | ||
"version": "3.0.0-beta.21", | ||
"bugs": "https://github.com/callstack/linaria/issues", | ||
@@ -74,5 +74,7 @@ "dependencies": { | ||
"test": "jest --config ../../jest.config.js --rootDir .", | ||
"test:dts": "dtslint --localTs ../../node_modules/typescript/lib __dtslint__", | ||
"typecheck": "tsc --noEmit --composite false", | ||
"watch": "npm run build --watch" | ||
} | ||
}, | ||
"readme": "<p align=\"center\">\n <img alt=\"Linaria\" src=\"https://raw.githubusercontent.com/callstack/linaria/HEAD/website/assets/linaria-logo@2x.png\" width=\"496\">\n</p>\n\n<p align=\"center\">\nZero-runtime CSS in JS library.\n</p>\n\n---\n\n### 📖 Please refer to the [GitHub](https://github.com/callstack/linaria#readme) for full documentation.\n\n## Features\n\n- Write CSS in JS, but with **zero runtime**, CSS is extracted to CSS files during build\n- Familiar **CSS syntax** with Sass like nesting\n- Use **dynamic prop based styles** with the React bindings, uses CSS variables behind the scenes\n- Easily find where the style was defined with **CSS sourcemaps**\n- **Lint your CSS** in JS with [stylelint](https://github.com/stylelint/stylelint)\n- Use **JavaScript for logic**, no CSS preprocessor needed\n- Optionally use any **CSS preprocessor** such as Sass or PostCSS\n\n**[Why use Linaria](../../docs/BENEFITS.md)**\n\n## Installation\n\n```sh\nnpm install @linaria/core @linaria/react @linaria/babel-preset @linaria/shaker\n```\n\nor\n\n```sh\nyarn add @linaria/core @linaria/react @linaria/babel-preset @linaria/shaker\n```\n" | ||
} |
@@ -6,3 +6,4 @@ export declare type LinariaClassName = string & { | ||
interface ICX { | ||
(...classNames: (ClassName | ClassName<LinariaClassName>)[]): string; | ||
(...classNames: ClassName<LinariaClassName>[]): LinariaClassName; | ||
(...classNames: ClassName[]): string; | ||
} | ||
@@ -9,0 +10,0 @@ /** |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
65748
535