@moonrepo/cli 0.11.1 → 0.13.0
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 +49 -0
- package/LICENSE +1 -1
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.13.0
|
|
4
|
+
|
|
5
|
+
#### 💥 Breaking
|
|
6
|
+
|
|
7
|
+
- The `node` setting in `.moon/workspace.yml` is now optional, allowing repos to opt-out of Node.js
|
|
8
|
+
support (in preparation for future languages support). This shouldn't affect you if the setting is
|
|
9
|
+
already explicitly defined.
|
|
10
|
+
- Renamed `actionRunner` setting to `runner` in `.moon/workspace.yml`.
|
|
11
|
+
|
|
12
|
+
#### 🚀 Updates
|
|
13
|
+
|
|
14
|
+
- Added a new `moon check` command, for running all build/test tasks for a project(s).
|
|
15
|
+
- Added a `hasher` setting to `.moon/workspace.yml`, for controlling aspects of smart hashing.
|
|
16
|
+
- Updated hashing to utilize the resolved version from the lockfile when applicable.
|
|
17
|
+
- Updated the action runner to fail when an output is defined and the output does not exist after
|
|
18
|
+
being ran.
|
|
19
|
+
- Released a new `@moonrepo/types` npm package.
|
|
20
|
+
|
|
21
|
+
#### ⚙️ Internal
|
|
22
|
+
|
|
23
|
+
- The `SetupToolchain` action has been updated to be language/platform aware, and as such, was split
|
|
24
|
+
into `SetupNodeToolchain` and `SetupSystemToolchain`.
|
|
25
|
+
- Output is now buffered when running a target. This should reduce tearing and increase performance.
|
|
26
|
+
- Upgraded all Cargo dependencies.
|
|
27
|
+
|
|
28
|
+
## 0.12.1
|
|
29
|
+
|
|
30
|
+
#### 🐞 Fixes
|
|
31
|
+
|
|
32
|
+
- Fixed `init` templates being populated with the wrong default values.
|
|
33
|
+
- Fixed the "creation time is not available for the filesystem" error when running in Docker.
|
|
34
|
+
|
|
35
|
+
## 0.12.0
|
|
36
|
+
|
|
37
|
+
#### 💥 Breaking
|
|
38
|
+
|
|
39
|
+
- The `typescript` setting in `.moon/workspace.yml` is now optional, allowing repos to opt-out of
|
|
40
|
+
TypeScript support. This shouldn't affect you if the setting is already explicitly defined.
|
|
41
|
+
|
|
42
|
+
#### 🚀 Updates
|
|
43
|
+
|
|
44
|
+
- Added support for Linux ARM GNU (`aarch64-unknown-linux-gnu`).
|
|
45
|
+
- Added support for Linux ARM musl (`aarch64-unknown-linux-musl`).
|
|
46
|
+
- Added a `typescript` setting to `moon.yml`, allowing TypeScript support to be toggled per project.
|
|
47
|
+
- Added a `--report` option to the `moon run` command, for generating run reports for debugging.
|
|
48
|
+
- Added an `--affected` option to the `moon query projects` command.
|
|
49
|
+
- Updated the task `command` to also support inline arguments. You can now merge `command` and
|
|
50
|
+
`args` into a single field.
|
|
51
|
+
|
|
3
52
|
## 0.11.1
|
|
4
53
|
|
|
5
54
|
#### 🐞 Fixes
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2021
|
|
3
|
+
Copyright (c) 2021 moonrepo LLC, Miles Johnson
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
|
6
6
|
associated documentation files (the "Software"), to deal in the Software without restriction,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonrepo/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "moon command line and core system.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"moon",
|
|
@@ -29,10 +29,12 @@
|
|
|
29
29
|
"detect-libc": "^2.0.1"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@moonrepo/core-linux-
|
|
33
|
-
"@moonrepo/core-linux-
|
|
34
|
-
"@moonrepo/core-
|
|
35
|
-
"@moonrepo/core-
|
|
36
|
-
"@moonrepo/core-
|
|
32
|
+
"@moonrepo/core-linux-arm64-gnu": "^0.13.0",
|
|
33
|
+
"@moonrepo/core-linux-arm64-musl": "^0.13.0",
|
|
34
|
+
"@moonrepo/core-linux-x64-gnu": "^0.13.0",
|
|
35
|
+
"@moonrepo/core-linux-x64-musl": "^0.13.0",
|
|
36
|
+
"@moonrepo/core-macos-arm64": "^0.13.0",
|
|
37
|
+
"@moonrepo/core-macos-x64": "^0.13.0",
|
|
38
|
+
"@moonrepo/core-windows-x64-msvc": "^0.13.0"
|
|
37
39
|
}
|
|
38
40
|
}
|