@linaria/atomic 3.0.0-beta.19 → 3.0.0-beta.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,59 +1,59 @@
1
1
  {
2
2
  "name": "@linaria/atomic",
3
- "version": "3.0.0-beta.19",
4
- "publishConfig": {
5
- "access": "public"
6
- },
7
3
  "description": "Blazing fast zero-runtime CSS in JS library",
8
- "sideEffects": false,
9
- "main": "lib/index.js",
10
- "module": "esm/index.js",
11
- "types": "types/index.d.ts",
12
- "files": [
13
- "types/",
14
- "lib/",
15
- "esm/"
16
- ],
17
- "linaria": {
18
- "tags": {
19
- "css": "./lib/processors/css.js",
20
- "styled": "./lib/processors/styled.js"
21
- }
4
+ "version": "3.0.0-beta.22",
5
+ "bugs": "https://github.com/callstack/linaria/issues",
6
+ "dependencies": {
7
+ "@linaria/core": "^3.0.0-beta.22",
8
+ "@linaria/logger": "^3.0.0-beta.20",
9
+ "@linaria/react": "^3.0.0-beta.22",
10
+ "@linaria/utils": "^3.0.0-beta.20",
11
+ "known-css-properties": "^0.24.0",
12
+ "postcss": "^8.3.11",
13
+ "stylis": "^3.5.4",
14
+ "ts-invariant": "^0.10.3"
15
+ },
16
+ "devDependencies": {
17
+ "@babel/types": "^7.18.4"
22
18
  },
23
- "license": "MIT",
24
- "repository": "git@github.com:callstack/linaria.git",
25
19
  "engines": {
26
20
  "node": "^12.16.0 || >=13.7.0"
27
21
  },
28
- "bugs": {
29
- "url": "https://github.com/callstack/linaria/issues"
30
- },
22
+ "files": [
23
+ "esm/",
24
+ "lib/",
25
+ "processors/",
26
+ "types/"
27
+ ],
31
28
  "homepage": "https://github.com/callstack/linaria#readme",
32
29
  "keywords": [
33
- "react",
34
- "linaria",
35
30
  "css",
36
31
  "css-in-js",
32
+ "linaria",
33
+ "react",
37
34
  "styled-components"
38
35
  ],
36
+ "license": "MIT",
37
+ "linaria": {
38
+ "tags": {
39
+ "css": "./lib/processors/css.js",
40
+ "styled": "./lib/processors/styled.js"
41
+ }
42
+ },
43
+ "main": "lib/index.js",
44
+ "module": "esm/index.js",
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "repository": "git@github.com:callstack/linaria.git",
49
+ "sideEffects": false,
50
+ "types": "types/index.d.ts",
39
51
  "scripts": {
40
- "build:lib": "cross-env NODE_ENV=legacy babel src --out-dir lib --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
41
- "build:esm": "babel src --out-dir esm --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
42
- "build": "yarn build:lib && yarn build:esm",
52
+ "build": "npm run build:lib && npm run build:esm && npm run build:declarations",
43
53
  "build:declarations": "tsc --emitDeclarationOnly --outDir types",
44
- "prepare": "yarn build && yarn build:declarations",
54
+ "build:esm": "babel src --out-dir esm --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
55
+ "build:lib": "cross-env NODE_ENV=legacy babel src --out-dir lib --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
45
56
  "typecheck": "tsc --noEmit --composite false",
46
- "watch": "yarn build --watch"
47
- },
48
- "dependencies": {
49
- "@linaria/core": "^3.0.0-beta.19",
50
- "@linaria/logger": "^3.0.0-beta.19",
51
- "@linaria/react": "^3.0.0-beta.19",
52
- "@linaria/utils": "^3.0.0-beta.19",
53
- "known-css-properties": "^0.24.0",
54
- "postcss": "^8.3.11",
55
- "stylis": "^3.5.4",
56
- "ts-invariant": "^0.10.3"
57
- },
58
- "gitHead": "73aab0a3908325333e452b9cbd5e438a0f1de463"
59
- }
57
+ "watch": "npm run build --watch"
58
+ }
59
+ }
@@ -0,0 +1,5 @@
1
+ Object.defineProperty(exports, '__esModule', {
2
+ value: true,
3
+ });
4
+
5
+ exports.default = require('../lib/processors/css').default;
@@ -0,0 +1,5 @@
1
+ Object.defineProperty(exports, '__esModule', {
2
+ value: true,
3
+ });
4
+
5
+ exports.default = require('../lib/processors/styled').default;
@@ -1 +1 @@
1
- export declare function getPropertyPriority(property: string): 2 | 1;
1
+ export declare function getPropertyPriority(property: string): 1 | 2;
package/CHANGELOG.md DELETED
@@ -1,37 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [3.0.0-beta.19](https://github.com/callstack/linaria/compare/v3.0.0-beta.18...v3.0.0-beta.19) (2022-06-03)
7
-
8
-
9
- ### Features
10
-
11
- * **atomic:** add support for atomic using styled API ([#966](https://github.com/callstack/linaria/issues/966)) ([f59860b](https://github.com/callstack/linaria/commit/f59860b09c5f91b0423dbf188e5f8aaaef38a6b5))
12
- * **babel:** api for custom tags ([#976](https://github.com/callstack/linaria/issues/976)) ([3285ccc](https://github.com/callstack/linaria/commit/3285ccc1d00449b78b3fc74087528cd38cbdd116))
13
- * **babel:** new way for detecting tag imports ([#974](https://github.com/callstack/linaria/issues/974)) ([3305cfb](https://github.com/callstack/linaria/commit/3305cfb0c0f65abdacceeb7e6bad118c59f7d551))
14
-
15
-
16
-
17
-
18
-
19
- # [3.0.0-beta.18](https://github.com/callstack/linaria/compare/v3.0.0-beta.17...v3.0.0-beta.18) (2022-04-01)
20
-
21
-
22
- ### Features
23
-
24
- * **atomic:** add property priorities ([#950](https://github.com/callstack/linaria/issues/950)) ([c44becb](https://github.com/callstack/linaria/commit/c44becb11b2eec795b68c2b3d0715672ba4b3888))
25
- * **atomic:** add support for at-rules, keyframes and pseudo classes ([#913](https://github.com/callstack/linaria/issues/913)) ([dee7fa1](https://github.com/callstack/linaria/commit/dee7fa14ea912224cac9f0673be7464e93571a73))
26
- * **atomic:** string serialization of atoms ([#934](https://github.com/callstack/linaria/issues/934)) ([ef19ccb](https://github.com/callstack/linaria/commit/ef19ccb384cb7dbee561e789f637b0289d4d224c))
27
-
28
-
29
-
30
-
31
-
32
- # [3.0.0-beta.15](https://github.com/callstack/linaria/compare/v3.0.0-beta.14...v3.0.0-beta.15) (2021-11-29)
33
-
34
-
35
- ### Features
36
-
37
- * **atomic:** create an atomic package for the css API ([#867](https://github.com/callstack/linaria/issues/867)) ([4773bcf](https://github.com/callstack/linaria/commit/4773bcf4b14f08cdc4d2b612654b962cdfc97eaa))