@based/functions 3.1.0-alpha → 3.1.1-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/dist/functions.d.ts +1 -7
- package/dist/functions.js.map +1 -1
- package/dist/package.json +31 -0
- package/package.json +8 -3
package/dist/functions.d.ts
CHANGED
|
@@ -161,13 +161,7 @@ type BasedAppFunctionConfig = {
|
|
|
161
161
|
main: string;
|
|
162
162
|
path?: string;
|
|
163
163
|
favicon?: string;
|
|
164
|
-
|
|
165
|
-
watch?: {
|
|
166
|
-
include: string[];
|
|
167
|
-
exclude?: string[];
|
|
168
|
-
};
|
|
169
|
-
plugins?: BuildOptions['plugins'];
|
|
170
|
-
};
|
|
164
|
+
plugins?: BuildOptions['plugins'];
|
|
171
165
|
};
|
|
172
166
|
type BasedJobFunctionConfig = {
|
|
173
167
|
type: 'job';
|
package/dist/functions.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"functions.js","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"functions.js","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"AAqUA,MAAM,UAAU,YAAY,CAC1B,IAAO,EACP,KAAU;IAEV,OAAO,CACL,KAAK;QACL,OAAO,KAAK,KAAK,QAAQ;QACzB,KAAK,CAAC,IAAI,KAAK,IAAI;QACnB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,CAC/B,CAAA;AACH,CAAC;AAED,MAAM,UAAU,eAAe,CAAC,KAAU;IACxC,OAAO,CACL,KAAK;QACL,OAAO,KAAK,KAAK,QAAQ;QACzB,CAAC,KAAK,CAAC,IAAI,KAAK,SAAS;YACvB,KAAK,CAAC,IAAI,KAAK,OAAO;YACtB,KAAK,CAAC,IAAI,KAAK,UAAU;YACzB,KAAK,CAAC,IAAI,KAAK,QAAQ,CAAC;QAC1B,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ,CAC/B,CAAA;AACH,CAAC;AAED,MAAM,UAAU,qBAAqB,CACnC,IAAO,EACP,MAAW;IAEX,OAAO,YAAY,CAAC,IAAI,EAAE,MAAM,CAAC,CAAA;AACnC,CAAC;AAED,MAAM,UAAU,wBAAwB,CACtC,MAAW;IAEX,OAAO,eAAe,CAAC,MAAM,CAAC,CAAA;AAChC,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@based/functions",
|
|
3
|
+
"version": "3.1.1-alpha",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"files":[
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"copy:uws": "cp src/uws.d.ts dist/uws.d.ts",
|
|
12
|
+
"copy:client": "cp ./dist/client.d.ts ./dist/client_original.d.ts",
|
|
13
|
+
"copy:package": "cp ./package.json ./dist/package.json",
|
|
14
|
+
"clean:ts:before": "rm -rf ./dist ./tsconfig.tsbuildinfo || true",
|
|
15
|
+
"clean:ts:after": "rm ./dist/tsconfig.tsbuildinfo || true",
|
|
16
|
+
"build": "npm run clean:ts:before && npx tsc -b && npm run copy:uws && npm run copy:client && npm run copy:package && npm run clean:ts:after",
|
|
17
|
+
"watch": "npx tsc --watch",
|
|
18
|
+
"clean": "rimraf {.turbo,dist,node_modules}"
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@saulx/utils": "^5.0.0",
|
|
23
|
+
"esbuild": "^0.24.2",
|
|
24
|
+
"utility-types": "^3.10.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"rimraf": "^3.0.2",
|
|
28
|
+
"ts-node": "10.9.1",
|
|
29
|
+
"typescript": "^4.3.5"
|
|
30
|
+
}
|
|
31
|
+
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@based/functions",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1-alpha",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "
|
|
6
|
+
"main": "index.js",
|
|
7
7
|
"files":[
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"
|
|
11
|
+
"copy:uws": "cp src/uws.d.ts dist/uws.d.ts",
|
|
12
|
+
"copy:client": "cp ./dist/client.d.ts ./dist/client_original.d.ts",
|
|
13
|
+
"copy:package": "cp ./package.json ./dist/package.json",
|
|
14
|
+
"clean:ts:before": "rm -rf ./dist ./tsconfig.tsbuildinfo || true",
|
|
15
|
+
"clean:ts:after": "rm ./dist/tsconfig.tsbuildinfo || true",
|
|
16
|
+
"build": "npm run clean:ts:before && npx tsc -b && npm run copy:uws && npm run copy:client && npm run copy:package && npm run clean:ts:after",
|
|
12
17
|
"watch": "npx tsc --watch",
|
|
13
18
|
"clean": "rimraf {.turbo,dist,node_modules}"
|
|
14
19
|
},
|