just-scripts 2.1.0 → 2.1.1

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.json CHANGED
@@ -2,7 +2,67 @@
2
2
  "name": "just-scripts",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 18 Nov 2022 22:40:03 GMT",
5
+ "date": "Thu, 09 Mar 2023 05:43:55 GMT",
6
+ "tag": "just-scripts_v2.1.1",
7
+ "version": "2.1.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "just-scripts",
13
+ "comment": "Bump just-scripts-utils to v1.2.1",
14
+ "commit": "b85a978f31cbda6e61635389255190046089ce35"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Fri, 17 Feb 2023 23:04:40 GMT",
21
+ "tag": "just-scripts_v2.1.0",
22
+ "version": "2.1.0",
23
+ "comments": {
24
+ "none": [
25
+ {
26
+ "author": "email not defined",
27
+ "package": "just-scripts",
28
+ "commit": "db5d23d8fce67da62801311c83ff7c9036b21547",
29
+ "comment": "Update devDependency @types/tar to v6.1.4"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Fri, 16 Dec 2022 08:02:09 GMT",
36
+ "tag": "just-scripts_v2.1.0",
37
+ "version": "2.1.0",
38
+ "comments": {
39
+ "none": [
40
+ {
41
+ "author": "email not defined",
42
+ "package": "just-scripts",
43
+ "commit": "7130869cff3e99722dcfad1823ae31611e7662bd",
44
+ "comment": "Update @types devDependencies"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Sat, 19 Nov 2022 08:02:12 GMT",
51
+ "tag": "just-scripts_v2.1.0",
52
+ "version": "2.1.0",
53
+ "comments": {
54
+ "none": [
55
+ {
56
+ "author": "elcraig@microsoft.com",
57
+ "package": "just-scripts",
58
+ "commit": "a1d4ca0f23c165cffc4c673c7a098c60401922c9",
59
+ "comment": "Hoist widely-used devDependencies"
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ {
65
+ "date": "Fri, 18 Nov 2022 22:40:12 GMT",
6
66
  "tag": "just-scripts_v2.1.0",
7
67
  "version": "2.1.0",
8
68
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - just-scripts
2
2
 
3
- This log was last generated on Fri, 18 Nov 2022 22:40:03 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 09 Mar 2023 05:43:55 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.1.1
8
+
9
+ Thu, 09 Mar 2023 05:43:55 GMT
10
+
11
+ ### Patches
12
+
13
+ - Bump just-scripts-utils to v1.2.1
14
+
7
15
  ## 2.1.0
8
16
 
9
- Fri, 18 Nov 2022 22:40:03 GMT
17
+ Fri, 18 Nov 2022 22:40:12 GMT
10
18
 
11
19
  ### Minor changes
12
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "just-scripts",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Just Stack Scripts",
5
5
  "keywords": [],
6
6
  "repository": {
@@ -28,7 +28,7 @@
28
28
  "diff-match-patch": "1.0.5",
29
29
  "fs-extra": "^10.0.0",
30
30
  "glob": "^7.1.3",
31
- "just-scripts-utils": ">=1.2.0 <2.0.0",
31
+ "just-scripts-utils": ">=1.2.1 <2.0.0",
32
32
  "just-task": ">=1.7.0 <2.0.0",
33
33
  "prompts": "^2.4.0",
34
34
  "run-parallel-limit": "^1.0.6",
@@ -38,20 +38,13 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/diff-match-patch": "1.0.32",
41
- "@types/fs-extra": "9.0.13",
42
41
  "@types/glob": "7.2.0",
43
- "@types/jest": "26.0.24",
44
- "@types/node": "14.18.33",
45
- "@types/prompts": "2.4.1",
42
+ "@types/prompts": "2.4.2",
46
43
  "@types/run-parallel-limit": "1.0.0",
47
44
  "@types/supports-color": "8.1.1",
48
- "@types/tar": "6.1.3",
45
+ "@types/tar": "6.1.4",
49
46
  "@types/webpack": "4.41.33",
50
47
  "async-done": "2.0.0",
51
- "jest": "26.6.3",
52
- "jest-cli": "26.6.3",
53
- "mock-fs": "4.14.0",
54
- "typescript": "4.1.3",
55
48
  "esbuild": "0.9.6"
56
49
  }
57
50
  }
@@ -1,4 +1,4 @@
1
- import mockfs = require('mock-fs');
1
+ import * as mockfs from 'mock-fs';
2
2
  import { encodeArgs, exec, spawn } from 'just-scripts-utils';
3
3
  import { TaskFunction } from 'just-task';
4
4
  import { tscTask, tscWatchTask, TscTaskOptions } from '../tscTask';