just-task 1.7.1 → 1.7.2
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 +17 -2
- package/CHANGELOG.md +10 -2
- package/README.md +8 -52
- package/package.json +2 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "just-task",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Fri, 10 Mar 2023 08:01:47 GMT",
|
|
6
|
+
"tag": "just-task_v1.7.2",
|
|
7
|
+
"version": "1.7.2",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "elcraig@microsoft.com",
|
|
12
|
+
"package": "just-task",
|
|
13
|
+
"commit": "8484242cfb5e360a8de6ac4a1190b5d488034be8",
|
|
14
|
+
"comment": "Update readmes and homepage links"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Thu, 09 Mar 2023 08:02:09 GMT",
|
|
6
21
|
"tag": "just-task_v1.7.1",
|
|
7
22
|
"version": "1.7.1",
|
|
8
23
|
"comments": {
|
|
@@ -17,7 +32,7 @@
|
|
|
17
32
|
"author": "beachball",
|
|
18
33
|
"package": "just-task",
|
|
19
34
|
"comment": "Bump just-task-logger to v1.2.1",
|
|
20
|
-
"commit": "
|
|
35
|
+
"commit": "77dab724dfe9e042887caa13e8f2a7e66e33b570"
|
|
21
36
|
}
|
|
22
37
|
]
|
|
23
38
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - just-task
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 10 Mar 2023 08:01:47 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.7.2
|
|
8
|
+
|
|
9
|
+
Fri, 10 Mar 2023 08:01:47 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- Update readmes and homepage links (elcraig@microsoft.com)
|
|
14
|
+
|
|
7
15
|
## 1.7.1
|
|
8
16
|
|
|
9
|
-
Thu, 09 Mar 2023 08:02:
|
|
17
|
+
Thu, 09 Mar 2023 08:02:09 GMT
|
|
10
18
|
|
|
11
19
|
### Patches
|
|
12
20
|
|
package/README.md
CHANGED
|
@@ -1,61 +1,17 @@
|
|
|
1
|
-
#
|
|
1
|
+
# just-task
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/js/just-task)
|
|
4
4
|
[](https://www.npmjs.com/package/just-task)
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
<!-- start shared -->
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
- sane preset build flows for node and browser projects featuring TypeScript, Webpack and jest
|
|
8
|
+
`Just` is a library that organizes build tasks for your JS projects. It consists of:
|
|
10
9
|
|
|
11
|
-
|
|
10
|
+
- `just-task`: a build task definition library
|
|
11
|
+
- `just-scripts`: sane preset build flows for node and browser projects featuring TypeScript, Webpack and Jest
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
# Building
|
|
16
|
-
|
|
17
|
-
This README contains only the instructions on how to build and contribute to the project. This is a monorepo that uses the [lerna](https://github.com/lerna/lerna) monorepo management utility. To get started, simply run the following:
|
|
18
|
-
|
|
19
|
-
`yarn`
|
|
20
|
-
|
|
21
|
-
and build all the packages this way:
|
|
22
|
-
|
|
23
|
-
`yarn build`
|
|
24
|
-
|
|
25
|
-
Development is usually done one package at a time. So go into each package and develop with the innerloop npm script:
|
|
26
|
-
|
|
27
|
-
```
|
|
28
|
-
cd packages/just-task
|
|
29
|
-
yarn dev
|
|
30
|
-
```
|
|
13
|
+
## Documentation
|
|
31
14
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
```
|
|
35
|
-
cd packages/just-task
|
|
36
|
-
yarn test
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
# Packages
|
|
40
|
-
|
|
41
|
-
| Package | Description |
|
|
42
|
-
| ------------------ | --------------------------------------------------------------------------------------- |
|
|
43
|
-
| just-task | The task definition library that wraps `undertaker` and `yargs` libraries |
|
|
44
|
-
| just-scripts | A reusable preset of frequently used tasks in node and browser projects |
|
|
45
|
-
| just-scripts-utils | A set of utilities for `just-scripts` |
|
|
46
|
-
| just-task-logger | A shared pretty logger used to display timestamps along with a message |
|
|
47
|
-
| documentation | The Docusaurus site content and styles which generates the Github page for this library |
|
|
48
|
-
|
|
49
|
-
# Contributing
|
|
50
|
-
|
|
51
|
-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
|
52
|
-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
|
|
53
|
-
the rights to use your contribution. For details, visit https://cla.microsoft.com. Please refer [Contribution guide](https://github.com/microsoft/just/.github/CONTRIBUTING.md) for more details
|
|
54
|
-
|
|
55
|
-
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
|
|
56
|
-
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
|
|
57
|
-
provided by the bot. You will only need to do this once across all repos using our CLA.
|
|
15
|
+
All the documentation is online at https://microsoft.github.io/just/
|
|
58
16
|
|
|
59
|
-
|
|
60
|
-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
|
|
61
|
-
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
|
17
|
+
<!-- end shared -->
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "just-task",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "Build task definition library",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/microsoft/just"
|
|
9
9
|
},
|
|
10
|
+
"homepage": "https://microsoft.github.io/just/",
|
|
10
11
|
"license": "MIT",
|
|
11
12
|
"author": "Ken Chau <kchau@microsoft.com>",
|
|
12
13
|
"main": "lib/index.js",
|