needle-cloud 0.1.0-alpha.8 → 0.2.0-alpha

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 CHANGED
@@ -4,7 +4,10 @@ All notable changes to this package will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [0.1.0-alpha.8] - 2024-09-26
7
+ ## [0.2.0-alpha] - 2024-10-01
8
+ - add: support to list deployments for web and CLI
9
+
10
+ ## [0.1.0-alpha.13] - 2024-09-26
8
11
  - add: web support
9
12
 
10
13
  ## [0.0.1-alpha.25] - 2024-08-23
package/README.md CHANGED
@@ -1,11 +1,18 @@
1
- # Needle Cloud CLI
1
+ # Needle Cloud SDK
2
2
 
3
- ## Usage
3
+ ## CLI
4
4
 
5
- Run with `npx @needle-tools/cloud-cli@latest <command>`
5
+ Run with `npx needle-cloud@latest <command>`
6
6
 
7
7
  #### Available Commands
8
8
 
9
9
  - `help`
10
10
  - `deploy`
11
- - `optimize`
11
+ - `optimize`
12
+
13
+
14
+ ## Web
15
+
16
+ Install in your project with `npm i needle-cloud`.
17
+
18
+ - TODO: docs
package/bin/cli.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- import { program } from '../dist/cli.js';
2
+ import { program } from '../dist/cli.esm.js';
3
3
  program.run();
package/dist/cli.d.ts CHANGED
@@ -1 +1 @@
1
- export {};
1
+ export const program: any;