next-with-linaria 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +16 -15
package/README.md CHANGED
@@ -13,21 +13,21 @@ The new Next.js 13 app directory feature doesn't work with the [@linaria/webpack
13
13
  <details open><summary>npm</summary>
14
14
 
15
15
  ```sh
16
- npm install next-with-linaria @linaria/core @linaria/react
16
+ npm install next-with-linaria @linaria/babel-preset @linaria/core @linaria/react
17
17
  ```
18
18
 
19
19
  </details>
20
20
  <details><summary>pnpm</summary>
21
21
 
22
22
  ```sh
23
- pnpm install next-with-linaria @linaria/core @linaria/react
23
+ pnpm install next-with-linaria @linaria/babel-preset @linaria/core @linaria/react
24
24
  ```
25
25
 
26
26
  </details>
27
27
  <details><summary>yarn</summary>
28
28
 
29
29
  ```sh
30
- yarn add next-with-linaria @linaria/core @linaria/react
30
+ yarn add next-with-linaria @linaria/babel-preset @linaria/core @linaria/react
31
31
  ```
32
32
 
33
33
  </details>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-with-linaria",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Linaria support for Next.js 13 app directory feature",
5
5
  "main": "lib/webpackConfig.js",
6
6
  "scripts": {
@@ -13,27 +13,28 @@
13
13
  },
14
14
  "packageManager": "pnpm@7.14.0",
15
15
  "devDependencies": {
16
- "@typescript-eslint/eslint-plugin": "^5.42.1",
17
- "@typescript-eslint/parser": "^5.42.1",
18
- "eslint": "^8.27.0",
19
- "eslint-config-prettier": "^8.5.0",
20
- "eslint-plugin-prettier": "^4.2.1",
21
- "eslint-plugin-simple-import-sort": "^8.0.0",
22
- "eslint-plugin-typescript-sort-keys": "^2.1.0",
23
- "eslint-plugin-unused-imports": "^2.0.0",
16
+ "@typescript-eslint/eslint-plugin": "5.42.1",
17
+ "@typescript-eslint/parser": "5.42.1",
18
+ "eslint": "8.27.0",
19
+ "eslint-config-prettier": "8.5.0",
20
+ "eslint-plugin-prettier": "4.2.1",
21
+ "eslint-plugin-simple-import-sort": "8.0.0",
22
+ "eslint-plugin-typescript-sort-keys": "2.1.0",
23
+ "eslint-plugin-unused-imports": "2.0.0",
24
24
  "is-ci": "3.0.1",
25
25
  "lint-staged": "13.0.3",
26
- "next": "^13.0.2",
27
- "prettier": "^2.7.1",
26
+ "next": "13.0.2",
27
+ "prettier": "2.7.1",
28
28
  "simple-git-hooks": "2.8.1",
29
- "typescript": "^4.8.4",
30
- "webpack": "^5.74.0"
29
+ "typescript": "4.8.4",
30
+ "webpack": "5.75.0",
31
+ "@linaria/babel-preset": "4.3.0"
31
32
  },
32
33
  "peerDependencies": {
33
- "webpack": "^5.74.0"
34
+ "@linaria/babel-preset": "4.x",
35
+ "webpack": "5.x"
34
36
  },
35
37
  "dependencies": {
36
- "@linaria/babel-preset": "^4.3.0",
37
38
  "file-system-cache": "2.0.1",
38
39
  "webpack-virtual-modules": "0.4.6"
39
40
  },