You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,16 +10,16 @@ Answer all questions in the style of a friendly colleague that is an expert in l
10
10
11
11
## Working Effectively
12
12
13
-
Mill may be found via it's wrapper script `./millw` in the root of the repository. For example `./millw vecxt.__.compile` will compile the JVM, JS and native targets.
13
+
Mill may be found via it's wrapper script `./mill` in the root of the repository. For example `./mill vecxt.__.compile` will compile the JVM, JS and native targets.
14
14
15
15
Each module contains it's own build definition in the package.mill file in it's module directory.
- Compile specific platforms (e.g. jvm) with `./millw vecxt.jvm.compile` or `./millw vecxt.js.compile` etc.
19
-
- Run all tests by following with the same pattern `./millw vecxt.__.test`
20
-
- Format code with `./millw mill.scalalib.scalafmt.ScalafmtModule/`. CI will enforce formatting, and will fail if code is not formatted.
21
-
- If you see an error like this is JS `[error] @scala.scalajs.js.annotation.internal.JSType is for compiler internal use only. Do not use it yourself.`, run `./millw clean vecxt.js._` to clear the build cache.
22
-
- To run a specific main class, use the runMain command and specify the package. `./millw experiments.runMain testCheatsheet` for example.
18
+
- Compile specific platforms (e.g. jvm) with `./mill vecxt.jvm.compile` or `./mill vecxt.js.compile` etc.
19
+
- Run all tests by following with the same pattern `./mill vecxt.__.test`
20
+
- Format code with `./mill mill.scalalib.scalafmt.ScalafmtModule/`. CI will enforce formatting, and will fail if code is not formatted.
21
+
- If you see an error like this is JS `[error] @scala.scalajs.js.annotation.internal.JSType is for compiler internal use only. Do not use it yourself.`, run `./mill clean vecxt.js._` to clear the build cache.
22
+
- To run a specific main class, use the runMain command and specify the package. `./mill experiments.runMain testCheatsheet` for example.
23
23
24
24
## Folder structure
25
25
@@ -29,7 +29,7 @@ vecxt/
29
29
├── .devcontainer/ # VS Code dev container configuration
0 commit comments