@arthur2079/web2 0.0.0 → 0.1.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.
- package/CHANGELOG.md +7 -0
- package/package.json +33 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
# [0.1.0](https://github.com/llawliet-l-l/test1-yarn-monorepo/compare/web2@0.0.1...web2@0.1.0) (2026-02-15)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Using yarn v4 ([6a77218](https://github.com/llawliet-l-l/test1-yarn-monorepo/commit/6a77218bd55573db53c2ffae0af1df8655a1ef8e))
|
|
8
|
+
## [0.0.1](https://github.com/llawliet-l-l/test1-yarn-monorepo/compare/web2@0.0.0...web2@0.0.1) (2026-02-15)
|
|
2
9
|
# [0.0.0](https://github.com/llawliet-l-l/test1-yarn-monorepo/compare/web2@0.0.0-next.4...web2@0.0.0) (2026-02-15)
|
|
3
10
|
# 0.0.0-next.4 (2026-02-15)
|
|
4
11
|
|
package/package.json
CHANGED
|
@@ -1,31 +1,33 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@arthur2079/web2",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"dev": "vite --clearScreen false",
|
|
7
|
-
"build": "tsc && vite build",
|
|
8
|
-
"preview": "vite preview",
|
|
9
|
-
"lint": "eslint \"src/**/*.ts\""
|
|
10
|
-
},
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"@arthur2079/ui2": "*",
|
|
13
|
-
"react": "^18.2.0",
|
|
14
|
-
"react-dom": "^18.2.0"
|
|
15
|
-
},
|
|
16
|
-
"devDependencies": {
|
|
17
|
-
"@arthur2079/eslint-config2": "*",
|
|
18
|
-
"@arthur2079/typescript-config2": "*",
|
|
19
|
-
"@types/react": "^19.0.1",
|
|
20
|
-
"@types/react-dom": "^19.0.2",
|
|
21
|
-
"@vitejs/plugin-react": "^3.1.0",
|
|
22
|
-
"eslint": "^8.57.0",
|
|
23
|
-
"typescript": "5.5.4",
|
|
24
|
-
"vite": "^5.1.4"
|
|
25
|
-
},
|
|
26
|
-
"publishConfig": {
|
|
27
|
-
"access": "public",
|
|
28
|
-
"registry": "https://registry.npmjs.org/"
|
|
29
|
-
},
|
|
30
|
-
"files": [
|
|
31
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@arthur2079/web2",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite --clearScreen false",
|
|
7
|
+
"build": "tsc && vite build",
|
|
8
|
+
"preview": "vite preview",
|
|
9
|
+
"lint": "eslint \"src/**/*.ts\""
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@arthur2079/ui2": "*",
|
|
13
|
+
"react": "^18.2.0",
|
|
14
|
+
"react-dom": "^18.2.0"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@arthur2079/eslint-config2": "*",
|
|
18
|
+
"@arthur2079/typescript-config2": "*",
|
|
19
|
+
"@types/react": "^19.0.1",
|
|
20
|
+
"@types/react-dom": "^19.0.2",
|
|
21
|
+
"@vitejs/plugin-react": "^3.1.0",
|
|
22
|
+
"eslint": "^8.57.0",
|
|
23
|
+
"typescript": "5.5.4",
|
|
24
|
+
"vite": "^5.1.4"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public",
|
|
28
|
+
"registry": "https://registry.npmjs.org/"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
]
|
|
33
|
+
}
|