@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 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
@@ -223,3 +223,4 @@ dist/*.umd.*.*s
223
223
  .turbo
224
224
 
225
225
  !/.run/
226
+ !/.storybook/
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,5 @@
1
+ "use strict";
2
+ const tslib_1 = require("tslib");
3
+ const index_1 = tslib_1.__importDefault(require("./index"));
4
+ module.exports = index_1.default;
5
+ //# sourceMappingURL=index.cjs.map
@@ -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"]}
@@ -0,0 +1,4 @@
1
+ import _ from './index';
2
+
3
+ // @ts-ignore
4
+ export = _
@@ -0,0 +1,2 @@
1
+ import _ from './index';
2
+ export = _;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "2.0.15",
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": "^10.1.0",
35
+ "fs-extra": "^11.1.0",
34
36
  "tslib": ">=2"
35
37
  },
36
38
  "publishConfig": {
37
39
  "access": "public"
38
40
  },
39
- "gitHead": "d3d9a1d2fc0fde3c33879283979bc2bbeb91cfea"
41
+ "gitHead": "fb84044199ac4ccc361b6e13db972521d425bef2"
40
42
  }