@yarn-tool/static-file 2.0.15 → 2.0.17
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 +20 -0
- package/file/gitignore +1 -0
- package/file/npmignore +23 -0
- package/file/tsdx/index.cjs +5 -0
- package/file/tsdx/index.cjs.map +1 -0
- package/file/tsdx/index.cts +4 -0
- package/file/tsdx/index.d.cts +2 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
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.17](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.16...@yarn-tool/static-file@2.0.17) (2023-01-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### ✨ Features
|
|
11
|
+
|
|
12
|
+
* add src/index.cts ([5237d0e](https://github.com/bluelovers/ws-yarn-workspaces/commit/5237d0e0a48c14612fd1f12bfd05747287585618))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [2.0.16](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.15...@yarn-tool/static-file@2.0.16) (2022-12-09)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### 📌 Dependencies
|
|
21
|
+
|
|
22
|
+
* update deps ([fe41874](https://github.com/bluelovers/ws-yarn-workspaces/commit/fe41874d6fd01f5f2b773aa085b80ee2d0683edc))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
## [2.0.15](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.14...@yarn-tool/static-file@2.0.15) (2022-11-04)
|
|
7
27
|
|
|
8
28
|
|
package/file/gitignore
CHANGED
package/file/npmignore
CHANGED
|
@@ -109,6 +109,21 @@ now.json
|
|
|
109
109
|
*.spec.d.tsx
|
|
110
110
|
*.spec.tsx
|
|
111
111
|
|
|
112
|
+
*.test.d.ts
|
|
113
|
+
*.test.js
|
|
114
|
+
*.test.ts
|
|
115
|
+
|
|
116
|
+
*.test.d.cts
|
|
117
|
+
*.test.cjs
|
|
118
|
+
*.test.cts
|
|
119
|
+
|
|
120
|
+
*.test.d.mts
|
|
121
|
+
*.test.mjs
|
|
122
|
+
*.test.mts
|
|
123
|
+
|
|
124
|
+
*.test.d.tsx
|
|
125
|
+
*.test.tsx
|
|
126
|
+
|
|
112
127
|
__mocks__
|
|
113
128
|
__tests__
|
|
114
129
|
__snapshots__
|
|
@@ -140,3 +155,11 @@ bin/tsconfig.*.json
|
|
|
140
155
|
__file_snapshots__
|
|
141
156
|
__fixtures__
|
|
142
157
|
/fixture/
|
|
158
|
+
|
|
159
|
+
/global.tsdx.d.ts
|
|
160
|
+
/next-env.d.ts
|
|
161
|
+
|
|
162
|
+
*.stories.*
|
|
163
|
+
./stories/
|
|
164
|
+
./global.tsdx.d.ts
|
|
165
|
+
./global.d.ts
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","sourceRoot":"","sources":["index.cts"],"names":[],"mappings":";;AAAA,4DAAwB;AAGxB,iBAAS,eAAC,CAAA","sourcesContent":["import _ from './index';\n\n// @ts-ignore\nexport = _\n"]}
|
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.17",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"lint": "npx eslint **/*.ts",
|
|
20
20
|
"test": "echo \"Error: no test specified\"",
|
|
21
21
|
"test:jest": "jest --passWithNoTests",
|
|
22
|
+
"test:jest:coverage": "yarn run test:jest -- --coverage",
|
|
22
23
|
"test:jest:snapshot": "yarn run test:jest -- -u",
|
|
23
24
|
"test:snapshot": "yarn run test -- -u",
|
|
24
25
|
"test:tsd": "ynpx tsd",
|
|
@@ -27,14 +28,15 @@
|
|
|
27
28
|
"prepublishOnly": "echo prepublishOnly",
|
|
28
29
|
"postpublish_": "git commit -m \"chore(release): publish\" .",
|
|
29
30
|
"ncu": "npx yarn-tool ncu -u",
|
|
30
|
-
"sort-package-json": "npx yarn-tool sort"
|
|
31
|
+
"sort-package-json": "npx yarn-tool sort",
|
|
32
|
+
"tsc:showConfig": "ynpx get-current-tsconfig -p"
|
|
31
33
|
},
|
|
32
34
|
"dependencies": {
|
|
33
|
-
"fs-extra": "^
|
|
35
|
+
"fs-extra": "^11.1.0",
|
|
34
36
|
"tslib": ">=2"
|
|
35
37
|
},
|
|
36
38
|
"publishConfig": {
|
|
37
39
|
"access": "public"
|
|
38
40
|
},
|
|
39
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "fb84044199ac4ccc361b6e13db972521d425bef2"
|
|
40
42
|
}
|