@within-7/jetr 0.0.1 → 0.0.2
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/package.json +3 -1
- package/src/index.js +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@within-7/jetr",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "CLI tool for deploying static websites instantly",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"test": "node bin/jetr.js --help",
|
|
15
|
+
"link": "npm link --force",
|
|
16
|
+
"unlink": "npm unlink -g @within-7/jetr",
|
|
15
17
|
"publish:release": "node scripts/publish.cjs"
|
|
16
18
|
},
|
|
17
19
|
"repository": {
|
package/src/index.js
CHANGED
|
@@ -12,7 +12,8 @@ import ora from 'ora';
|
|
|
12
12
|
const __filename = fileURLToPath(import.meta.url);
|
|
13
13
|
const __dirname = path.dirname(__filename);
|
|
14
14
|
|
|
15
|
-
const API_URL = 'https://api-statics.within-7.com/api/deploy';
|
|
15
|
+
// const API_URL = 'https://api-statics.within-7.com/api/deploy';
|
|
16
|
+
const API_URL = 'https://api-statics.within-7.com/api/deploy/s3';
|
|
16
17
|
const CONFIG_FILE = '.jetrrc';
|
|
17
18
|
|
|
18
19
|
const DEFAULT_JETRIGNORE = `# Dependencies
|