<feed xmlns='http://www.w3.org/2005/Atom'>
<title>deno.git/cli/tests/testdata/run/workspaces/basic/bar/fizz, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<id>https://git.soulminingrig.com/deno.git/atom?h=main</id>
<link rel='self' href='https://git.soulminingrig.com/deno.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://git.soulminingrig.com/deno.git/'/>
<updated>2024-02-10T20:22:13Z</updated>
<entry>
<title>chore: move cli/tests/ -&gt; tests/  (#22369)</title>
<updated>2024-02-10T20:22:13Z</updated>
<author>
<name>Matt Mastracci</name>
<email>matthew@mastracci.com</email>
</author>
<published>2024-02-10T20:22:13Z</published>
<link rel='alternate' type='text/html' href='https://git.soulminingrig.com/deno.git/commit/?id=f5e46c9bf2f50d66a953fa133161fc829cecff06'/>
<id>urn:sha1:f5e46c9bf2f50d66a953fa133161fc829cecff06</id>
<content type='text'>
This looks like a massive PR, but it's only a move from cli/tests -&gt;
tests, and updates of relative paths for files.

This is the first step towards aggregate all of the integration test
files under tests/, which will lead to a set of integration tests that
can run without the CLI binary being built.

While we could leave these tests under `cli`, it would require us to
keep a more complex directory structure for the various test runners. In
addition, we have a lot of complexity to ignore various test files in
the `cli` project itself (cargo publish exclusion rules, autotests =
false, etc).

And finally, the `tests/` folder will eventually house the `test_ffi`,
`test_napi` and other testing code, reducing the size of the root repo
directory.

For easier review, the extremely large and noisy "move" is in the first
commit (with no changes -- just a move), while the remainder of the
changes to actual files is in the second commit.</content>
</entry>
<entry>
<title>feat(unstable): Workspaces support (#20410)</title>
<updated>2023-11-17T01:28:38Z</updated>
<author>
<name>Bartek Iwańczuk</name>
<email>biwanczuk@gmail.com</email>
</author>
<published>2023-11-17T01:28:38Z</published>
<link rel='alternate' type='text/html' href='https://git.soulminingrig.com/deno.git/commit/?id=9534e6e1131542653c4e266f712c4067af2c8ec0'/>
<id>urn:sha1:9534e6e1131542653c4e266f712c4067af2c8ec0</id>
<content type='text'>
This commit adds unstable workspace support. This is extremely
bare-bones and
minimal first-pass at this.

With this change `deno.json` supports specifying `workspaces` key, that
accepts a list of subdirectories. Each workspace can have its own import
map. It's required to specify a `"name"` and `"version"` properties in the
configuration file for the workspace:

```jsonc
// deno.json
{
  "workspaces": [
     "a",
     "b"
  },
  "imports": {
    "express": "npm:express@5"
   }
}
```
``` jsonc
// a/deno.json
{
  "name": "a",
  "version": "1.0.2",
  "imports": {
    "kleur": "npm:kleur"
  }
}
```
```jsonc
// b/deno.json
{
  "name": "b",
  "version": "0.51.0",
  "imports": {
    "chalk": "npm:chalk"
  }
}
```

`--unstable-workspaces` flag is required to use this feature:
```
$ deno run --unstable-workspaces mod.ts
```

---------

Co-authored-by: David Sherret &lt;dsherret@gmail.com&gt;</content>
</entry>
</feed>
