esm.dev 1.7.0 → 1.7.1

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.
@@ -10,7 +10,10 @@ export class InitCommand extends PackagePathSpecific(MustacheGeneratorCommand) {
10
10
  examples: [
11
11
  ['Create a minimal template', 'esm.dev init'],
12
12
  ["Specify the packages you're developing", 'esm.dev init packages/*'],
13
- ['Specify different ports', 'esm.dev init --port 3001 --esm-origin'],
13
+ [
14
+ 'Specify different ports',
15
+ 'esm.dev init --port 3001 --esm-port 8081 --registry-port 4444',
16
+ ],
14
17
  ],
15
18
  });
16
19
  esmPort = Option.String('-e,--esm-port', '8080', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esm.dev",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "TypeScript library template",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -12,7 +12,10 @@ export class InitCommand extends PackagePathSpecific(MustacheGeneratorCommand) {
12
12
  examples: [
13
13
  ['Create a minimal template', 'esm.dev init'],
14
14
  ["Specify the packages you're developing", 'esm.dev init packages/*'],
15
- ['Specify different ports', 'esm.dev init --port 3001 --esm-origin'],
15
+ [
16
+ 'Specify different ports',
17
+ 'esm.dev init --port 3001 --esm-port 8081 --registry-port 4444',
18
+ ],
16
19
  ],
17
20
  })
18
21