needle-cloud 0.0.1-alpha.22

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 ADDED
@@ -0,0 +1,39 @@
1
+ # Changelog
2
+ All notable changes to this package will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.0.1-alpha.22] - 2024-08-16
8
+ - add: Node 18 support
9
+ - add: the access token can now set in a environment variable using `NEEDLE_CLOUD_TOKEN=<yourtoken>`
10
+
11
+ ## [0.0.1-alpha.20] - 2024-08-14
12
+ - add: `deploy` does now automatically determine a project name if none is provided
13
+ - add: `deploy` does now allow deployment of gzip compressed files
14
+
15
+ ## [0.0.1-alpha.18] - 2024-08-13
16
+ - add: better re-upload handling and optimization request for already optimized files
17
+
18
+ ## [0.0.1-alpha.16] - 2024-08-12
19
+ - add: optimize `--verbose` mode
20
+ - fix: upload issue in SDK
21
+
22
+ ## [0.0.1-alpha.10] - 2024-08-11
23
+ - add: `needle-cloud optimize` command now has a `--name` argument
24
+
25
+ ## [0.0.1-alpha.8] - 2024-08-09
26
+ - add: `needle-cloud optimize` which allows to run compression via needle-cloud and get optimized files
27
+
28
+ ## [0.0.1-alpha.5] - 2024-08-09
29
+ - add: parallelized upload
30
+ - add: `needle-cloud` now has a `--name` argument which allows to re-deploy to the same view
31
+
32
+ ## [0.0.1-alpha.4] - 2024-07-18
33
+ - change: upload with deployment type
34
+
35
+ ## [0.0.1-alpha.3] - 2024-07-08
36
+ - add: open pages url
37
+
38
+ ## [0.0.1-alpha.1] - 2024-07-06
39
+ - initial release
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Needle Cloud CLI
2
+
3
+ ## Usage
4
+
5
+ Run with `npx @needle-tools/cloud-cli@latest <command>`
6
+
7
+ #### Available Commands
8
+
9
+ - `help`
10
+ - `deploy`
11
+ - `optimize`
package/bin/cli.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import { program } from '../dist/cloud-cli.esm.js';
3
+ program.run();