@mcpher/gas-fakes 1.0.26 → 1.0.27
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/gasmess/bruce/package-lock.json +1 -1
- package/package.json +2 -7
- package/src/index.js +1 -4
package/package.json
CHANGED
|
@@ -66,16 +66,11 @@
|
|
|
66
66
|
"pub": "npm publish --access public"
|
|
67
67
|
},
|
|
68
68
|
"name": "@mcpher/gas-fakes",
|
|
69
|
-
"version": "1.0.
|
|
69
|
+
"version": "1.0.27",
|
|
70
70
|
"license": "MIT",
|
|
71
71
|
"main": "main.js",
|
|
72
72
|
"exports": {
|
|
73
|
-
".":
|
|
74
|
-
"development": "./src/index.js",
|
|
75
|
-
"import": "./main.js",
|
|
76
|
-
"default": "./main.js"
|
|
77
|
-
},
|
|
78
|
-
"./package.json": "./package.json"
|
|
73
|
+
".": "./main.js"
|
|
79
74
|
},
|
|
80
75
|
"description": "A proof of concept implementation of Apps Script Environment on Node",
|
|
81
76
|
"repository": "github:brucemcpherson/gas-fakes",
|
package/src/index.js
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import colors from 'yoctocolors'
|
|
2
1
|
import './services/scriptapp/app.js'
|
|
3
2
|
|
|
4
|
-
import {default as pf } from '../package.json' with { type: 'json' };
|
|
5
|
-
console.log (`You are using ${colors.blueBright(pf.name)} package version ${colors.greenBright(pf.version)}`)
|
|
6
|
-
ScriptApp.__gasFakesVersion = pf.version
|
|
7
3
|
import './services/driveapp/app.js'
|
|
8
4
|
import './services/logger/app.js'
|
|
9
5
|
import './services/urlfetchapp/app.js'
|
|
@@ -21,3 +17,4 @@ import './services/documentapp/app.js'
|
|
|
21
17
|
import './services/advforms/app.js'
|
|
22
18
|
import './services/formapp/app.js'
|
|
23
19
|
import './services/slidesapp/app.js'
|
|
20
|
+
ScriptApp.isFake
|