This repository has been archived by the owner on Jan 7, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
137 additions
and
32 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
## 0.1.0 | ||
## 0.0.2 | ||
|
||
#### 🚀 Updates | ||
|
||
- Updated dependencies. | ||
|
||
## 0.0.1 | ||
|
||
#### 🚀 Updates | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
## 0.1.0 | ||
## 0.0.1 | ||
|
||
#### 🚀 Updates | ||
|
||
- Initial release! | ||
- New features from moon migration: | ||
- Bun support behind a new `--bun` flag. | ||
- Runs scripts through a package manager, instead of `moon node run-script`. | ||
- Root-level tasks will now create a root config, instead of warning. | ||
- Supports `globalDotEnv`, `dotEnv`, and `outputMode`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...snapshots/migrate_turborepo_test__migrate_turborepo__can_force_bun_instead_of_node-2.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
source: crates/migrate-turborepo/tests/migrate_turborepo_test.rs | ||
expression: "fs::read_to_string(sandbox.path().join(\"client/moon.yml\")).unwrap()" | ||
--- | ||
language: javascript | ||
platform: bun | ||
tasks: | ||
build: | ||
command: bun run build | ||
deps: | ||
- ^:build | ||
outputs: | ||
- client/**/* | ||
typecheck: | ||
command: bun run typecheck | ||
deps: | ||
- ~:build | ||
|
18 changes: 18 additions & 0 deletions
18
...snapshots/migrate_turborepo_test__migrate_turborepo__can_force_bun_instead_of_node-3.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
source: crates/migrate-turborepo/tests/migrate_turborepo_test.rs | ||
expression: "fs::read_to_string(sandbox.path().join(\"server/moon.yml\")).unwrap()" | ||
--- | ||
language: typescript | ||
platform: bun | ||
tasks: | ||
build: | ||
command: bun run build | ||
deps: | ||
- ^:build | ||
outputs: | ||
- server/**/* | ||
lint: | ||
command: bun run lint | ||
options: | ||
outputStyle: buffer-only-failure | ||
|
12 changes: 12 additions & 0 deletions
12
...s/snapshots/migrate_turborepo_test__migrate_turborepo__can_force_bun_instead_of_node.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
source: crates/migrate-turborepo/tests/migrate_turborepo_test.rs | ||
expression: "fs::read_to_string(sandbox.path().join(\".moon/tasks/bun.yml\")).unwrap()" | ||
--- | ||
tasks: | ||
build: | ||
command: bun run build | ||
deps: | ||
- ^:build | ||
outputs: | ||
- dist/**/* | ||
|