@raisenow/tamaro-cli 1.1.4 → 1.1.5
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/dist/{chunk-NKTGEMJE.js → chunk-TXIBRHT6.js} +1 -1
- package/dist/cli.js +2 -2
- package/dist/webpack.config.js +1 -1
- package/package.json +13 -11
- package/src/lib/env.ts +2 -1
|
@@ -189,7 +189,7 @@ var getEnvVars = (files, ifMin, ifCore, ifLocalCore, ifHttps) => {
|
|
|
189
189
|
} else {
|
|
190
190
|
let version = process.env.CORE_VERSION;
|
|
191
191
|
version = version ? `@${version}` : "";
|
|
192
|
-
process.env.CORE_URL ??= `https://
|
|
192
|
+
process.env.CORE_URL ??= `https://fastly.jsdelivr.net/npm/@raisenow/tamaro-core${version}/dist/index.js`;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
195
|
const varNames = [
|
package/dist/cli.js
CHANGED
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
resolveBin,
|
|
23
23
|
resolveOwn,
|
|
24
24
|
runCommandSync
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-TXIBRHT6.js";
|
|
26
26
|
|
|
27
27
|
// src/cli.ts
|
|
28
28
|
import { createCommand } from "commander";
|
|
@@ -538,7 +538,7 @@ var prepareFlags4 = async (flags, options) => {
|
|
|
538
538
|
// package.json
|
|
539
539
|
var package_default = {
|
|
540
540
|
name: "@raisenow/tamaro-cli",
|
|
541
|
-
version: "1.1.
|
|
541
|
+
version: "1.1.5",
|
|
542
542
|
author: {
|
|
543
543
|
name: "RaiseNow",
|
|
544
544
|
email: "development@raisenow.com"
|
package/dist/webpack.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raisenow/tamaro-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "RaiseNow",
|
|
6
6
|
"email": "development@raisenow.com"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"prepare": "pnpm build",
|
|
11
|
+
"tscheck": "tsc --noEmit",
|
|
12
|
+
"build": "tsup src/cli.ts src/webpack.config.ts --clean --shims --format esm",
|
|
13
|
+
"build:watch": "pnpm build --watch --ignore-watch .history --ignore-watch .idea",
|
|
14
|
+
"readme": "pnpx http-server . --cors -o /readme.html",
|
|
15
|
+
"lint": "eslint .",
|
|
16
|
+
"lint:fix": "eslint --fix .",
|
|
17
|
+
"format": "prettier --write ."
|
|
18
|
+
},
|
|
9
19
|
"bin": "dist/cli.js",
|
|
10
20
|
"engines": {
|
|
11
21
|
"node": ">=20",
|
|
12
22
|
"npm": ">=10"
|
|
13
23
|
},
|
|
24
|
+
"packageManager": "pnpm@9.0.5",
|
|
14
25
|
"dependencies": {
|
|
15
26
|
"@babel/cli": "^7.24.1",
|
|
16
27
|
"@babel/core": "^7.24.4",
|
|
@@ -89,14 +100,5 @@
|
|
|
89
100
|
"webpack-config-utils": "^2.3.1",
|
|
90
101
|
"webpack-dev-server": "^5.0.4",
|
|
91
102
|
"yaml-loader": "^0.8.1"
|
|
92
|
-
},
|
|
93
|
-
"scripts": {
|
|
94
|
-
"tscheck": "tsc --noEmit",
|
|
95
|
-
"build": "tsup src/cli.ts src/webpack.config.ts --clean --shims --format esm",
|
|
96
|
-
"build:watch": "pnpm build --watch --ignore-watch .history --ignore-watch .idea",
|
|
97
|
-
"readme": "pnpx http-server . --cors -o /readme.html",
|
|
98
|
-
"lint": "eslint .",
|
|
99
|
-
"lint:fix": "eslint --fix .",
|
|
100
|
-
"format": "prettier --write ."
|
|
101
103
|
}
|
|
102
|
-
}
|
|
104
|
+
}
|
package/src/lib/env.ts
CHANGED
|
@@ -63,7 +63,8 @@ export const getEnvVars = (
|
|
|
63
63
|
let version = process.env.CORE_VERSION
|
|
64
64
|
version = version ? `@${version}` : ''
|
|
65
65
|
|
|
66
|
-
process.env.CORE_URL ??= `https://cdn.jsdelivr.net/npm/@raisenow/tamaro-core${version}/dist/index.js`
|
|
66
|
+
// process.env.CORE_URL ??= `https://cdn.jsdelivr.net/npm/@raisenow/tamaro-core${version}/dist/index.js`
|
|
67
|
+
process.env.CORE_URL ??= `https://fastly.jsdelivr.net/npm/@raisenow/tamaro-core${version}/dist/index.js`
|
|
67
68
|
}
|
|
68
69
|
}
|
|
69
70
|
|