@yarn-tool/static-file 2.0.6 → 2.0.9
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 +40 -0
- package/file/gitignore +2 -1
- package/file/npmignore +5 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,46 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.0.9](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.8...@yarn-tool/static-file@2.0.9) (2022-09-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### 🔖 Miscellaneous
|
|
11
|
+
|
|
12
|
+
* . ([823293e](https://github.com/bluelovers/ws-yarn-workspaces/commit/823293ed5eac74c0269b9fde70ab752809c94a62))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [2.0.8](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.7...@yarn-tool/static-file@2.0.8) (2022-09-06)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### 📚 Documentation
|
|
21
|
+
|
|
22
|
+
* add directory ([442a552](https://github.com/bluelovers/ws-yarn-workspaces/commit/442a55232619f7fe2b9bad6f8eccfffc4f8f47d2))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### 📌 Dependencies
|
|
26
|
+
|
|
27
|
+
* update deps ([aeb5e41](https://github.com/bluelovers/ws-yarn-workspaces/commit/aeb5e416e8ea6c7d37ed7d38fedd6ff5c8c371df))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### 🔖 Miscellaneous
|
|
31
|
+
|
|
32
|
+
* . ([3a7fdc9](https://github.com/bluelovers/ws-yarn-workspaces/commit/3a7fdc924ada93b1d0ac0160f8d77e46ff060588))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [2.0.7](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.6...@yarn-tool/static-file@2.0.7) (2022-08-28)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### 📌 Dependencies
|
|
41
|
+
|
|
42
|
+
* update deps ([9c67e20](https://github.com/bluelovers/ws-yarn-workspaces/commit/9c67e20ac4960ee2c98d89c448a2ea5a7495a3bf))
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
6
46
|
## [2.0.6](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.5...@yarn-tool/static-file@2.0.6) (2022-08-26)
|
|
7
47
|
|
|
8
48
|
|
package/file/gitignore
CHANGED
package/file/npmignore
CHANGED
|
@@ -90,6 +90,7 @@ tsconfig.esm.json.tpl
|
|
|
90
90
|
.mocharc.yml
|
|
91
91
|
jest.config.js
|
|
92
92
|
jest.config.*
|
|
93
|
+
/jest-preset.*
|
|
93
94
|
/report.*.json
|
|
94
95
|
now.json
|
|
95
96
|
/Makefile
|
|
@@ -135,3 +136,7 @@ bin/tsconfig.json
|
|
|
135
136
|
bin/tsconfig.*.json
|
|
136
137
|
|
|
137
138
|
.yarnrc.yml
|
|
139
|
+
.turbo
|
|
140
|
+
__file_snapshots__
|
|
141
|
+
__fixtures__
|
|
142
|
+
/fixture/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarn-tool/static-file",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/bluelovers/ws-yarn-workspaces.git"
|
|
11
|
+
"url": "git+https://github.com/bluelovers/ws-yarn-workspaces.git",
|
|
12
|
+
"directory": "packages/@yarn-tool/static-file"
|
|
12
13
|
},
|
|
13
14
|
"license": "ISC",
|
|
14
15
|
"author": "",
|
|
@@ -29,10 +30,10 @@
|
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
32
|
"fs-extra": "^10.1.0",
|
|
32
|
-
"tslib": "
|
|
33
|
+
"tslib": ">=2"
|
|
33
34
|
},
|
|
34
35
|
"publishConfig": {
|
|
35
36
|
"access": "public"
|
|
36
37
|
},
|
|
37
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "f1ecaa59749bcb8c8ecd9f4ef17b3522bf9337c1"
|
|
38
39
|
}
|