@linaria/atomic 4.2.2 → 4.2.4

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,25 +1,19 @@
1
1
  {
2
2
  "name": "@linaria/atomic",
3
+ "version": "4.2.4",
3
4
  "description": "Blazing fast zero-runtime CSS in JS library",
4
- "version": "4.2.2",
5
+ "keywords": [
6
+ "css",
7
+ "css-in-js",
8
+ "linaria",
9
+ "react",
10
+ "styled-components"
11
+ ],
12
+ "homepage": "https://github.com/callstack/linaria#readme",
5
13
  "bugs": "https://github.com/callstack/linaria/issues",
6
- "dependencies": {
7
- "@linaria/core": "^4.2.2",
8
- "@linaria/logger": "^4.0.0",
9
- "@linaria/react": "^4.3.0",
10
- "@linaria/tags": "^4.2.0",
11
- "@linaria/utils": "^4.2.4",
12
- "known-css-properties": "^0.24.0",
13
- "postcss": "^8.3.11",
14
- "stylis": "^3.5.4",
15
- "ts-invariant": "^0.10.3"
16
- },
17
- "devDependencies": {
18
- "@babel/types": "^7.18.9"
19
- },
20
- "engines": {
21
- "node": "^12.16.0 || >=13.7.0"
22
- },
14
+ "repository": "git@github.com:callstack/linaria.git",
15
+ "license": "MIT",
16
+ "sideEffects": false,
23
17
  "exports": {
24
18
  "./package.json": "./package.json",
25
19
  ".": {
@@ -33,33 +27,40 @@
33
27
  "default": "./dist/*.js"
34
28
  }
35
29
  },
30
+ "main": "dist/index.js",
31
+ "module": "dist/index.mjs",
32
+ "types": "types/index.d.ts",
36
33
  "files": [
37
34
  "dist/",
38
35
  "processors/",
39
36
  "types/"
40
37
  ],
41
- "homepage": "https://github.com/callstack/linaria#readme",
42
- "keywords": [
43
- "css",
44
- "css-in-js",
45
- "linaria",
46
- "react",
47
- "styled-components"
48
- ],
49
- "license": "MIT",
50
38
  "linaria": {
51
39
  "tags": {
52
40
  "css": "./dist/processors/css.js",
53
41
  "styled": "./dist/processors/styled.js"
54
42
  }
55
43
  },
56
- "main": "dist/index.js",
57
- "module": "dist/index.mjs",
44
+ "dependencies": {
45
+ "known-css-properties": "^0.24.0",
46
+ "postcss": "^8.3.11",
47
+ "stylis": "^3.5.4",
48
+ "ts-invariant": "^0.10.3",
49
+ "@linaria/core": "^4.2.4",
50
+ "@linaria/logger": "^4.0.0",
51
+ "@linaria/react": "^4.3.2",
52
+ "@linaria/tags": "^4.2.2",
53
+ "@linaria/utils": "^4.2.6"
54
+ },
55
+ "devDependencies": {
56
+ "@babel/types": "^7.20.2"
57
+ },
58
+ "engines": {
59
+ "node": "^12.16.0 || >=13.7.0"
60
+ },
58
61
  "publishConfig": {
59
62
  "access": "public"
60
63
  },
61
- "repository": "git@github.com:callstack/linaria.git",
62
- "sideEffects": false,
63
64
  "tsup": {
64
65
  "entry": [
65
66
  "src/index.ts",
@@ -70,12 +71,11 @@
70
71
  "sourcemap": true,
71
72
  "clean": true
72
73
  },
73
- "types": "types/index.d.ts",
74
74
  "scripts": {
75
- "build": "npm run build:dist && npm run build:declarations",
75
+ "build": "pnpm build:dist && pnpm build:declarations",
76
76
  "build:declarations": "tsc --emitDeclarationOnly --outDir types",
77
77
  "build:dist": "tsup --format cjs,esm",
78
78
  "typecheck": "tsc --noEmit --composite false",
79
- "watch": "npm run build --watch"
79
+ "watch": "pnpm build:dist --watch & pnpm build:declarations --watch"
80
80
  }
81
81
  }
@@ -1 +1 @@
1
- export declare function getPropertyPriority(property: string): 1 | 2;
1
+ export declare function getPropertyPriority(property: string): 2 | 1;