@linaria/atomic 3.0.0-beta.19 → 3.0.0-beta.20
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,58 @@
|
|
|
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
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
4
|
+
"version": "3.0.0-beta.20",
|
|
5
|
+
"bugs": "https://github.com/callstack/linaria/issues",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@linaria/core": "^3.0.0-beta.20",
|
|
8
|
+
"@linaria/logger": "^3.0.0-beta.20",
|
|
9
|
+
"@linaria/react": "^3.0.0-beta.20",
|
|
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"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": "^12.16.0 || >=13.7.0"
|
|
21
|
+
},
|
|
12
22
|
"files": [
|
|
13
23
|
"types/",
|
|
14
24
|
"lib/",
|
|
15
25
|
"esm/"
|
|
16
26
|
],
|
|
27
|
+
"homepage": "https://github.com/callstack/linaria#readme",
|
|
28
|
+
"keywords": [
|
|
29
|
+
"css",
|
|
30
|
+
"css-in-js",
|
|
31
|
+
"linaria",
|
|
32
|
+
"react",
|
|
33
|
+
"styled-components"
|
|
34
|
+
],
|
|
35
|
+
"license": "MIT",
|
|
17
36
|
"linaria": {
|
|
18
37
|
"tags": {
|
|
19
38
|
"css": "./lib/processors/css.js",
|
|
20
39
|
"styled": "./lib/processors/styled.js"
|
|
21
40
|
}
|
|
22
41
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
},
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "https://github.com/callstack/linaria/issues"
|
|
42
|
+
"main": "lib/index.js",
|
|
43
|
+
"module": "esm/index.js",
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
30
46
|
},
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"linaria",
|
|
35
|
-
"css",
|
|
36
|
-
"css-in-js",
|
|
37
|
-
"styled-components"
|
|
38
|
-
],
|
|
47
|
+
"repository": "git@github.com:callstack/linaria.git",
|
|
48
|
+
"sideEffects": false,
|
|
49
|
+
"types": "types/index.d.ts",
|
|
39
50
|
"scripts": {
|
|
40
|
-
"build
|
|
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",
|
|
51
|
+
"build": "npm run build:lib && npm run build:esm && npm run build:declarations",
|
|
43
52
|
"build:declarations": "tsc --emitDeclarationOnly --outDir types",
|
|
44
|
-
"
|
|
53
|
+
"build:esm": "babel src --out-dir esm --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
|
|
54
|
+
"build:lib": "cross-env NODE_ENV=legacy babel src --out-dir lib --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
|
|
45
55
|
"typecheck": "tsc --noEmit --composite false",
|
|
46
|
-
"watch": "
|
|
47
|
-
}
|
|
48
|
-
|
|
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
|
-
}
|
|
56
|
+
"watch": "npm run build --watch"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function getPropertyPriority(property: string):
|
|
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))
|