@bobfrankston/msger 0.1.37 → 0.1.38

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/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export {};
1
+ export { showMessageBox } from "./shower.js";
2
2
  //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,cAAc,EAAC,MAAM,aAAa,CAAC"}
package/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import main from "./cli.js";
2
+ export { showMessageBox } from "./shower.js";
2
3
  if (import.meta.main) {
3
4
  await main();
4
5
  }
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,UAAU,CAAC;AAG5B,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;IACnB,MAAM,IAAI,EAAE,CAAC;AACjB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,UAAU,CAAC;AAE5B,OAAO,EAAC,cAAc,EAAC,MAAM,aAAa,CAAC;AAE3C,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;IACnB,MAAM,IAAI,EAAE,CAAC;AACjB,CAAC"}
package/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import main from "./cli.js";
2
2
 
3
+ export {showMessageBox} from "./shower.js";
3
4
 
4
5
  if (import.meta.main) {
5
6
  await main();
@@ -0,0 +1,33 @@
1
+ {
2
+ "folders": [
3
+ {
4
+ "path": "."
5
+ },
6
+ {
7
+ "path": "../msgview"
8
+ }
9
+ ],
10
+ "settings": {
11
+ "workbench.colorCustomizations": {
12
+ "activityBar.activeBackground": "#7cedf2",
13
+ "activityBar.background": "#7cedf2",
14
+ "activityBar.foreground": "#15202b",
15
+ "activityBar.inactiveForeground": "#15202b99",
16
+ "activityBarBadge.background": "#ee51e7",
17
+ "activityBarBadge.foreground": "#15202b",
18
+ "commandCenter.border": "#15202b99",
19
+ "sash.hoverBorder": "#7cedf2",
20
+ "statusBar.background": "#4de7ee",
21
+ "statusBar.foreground": "#15202b",
22
+ "statusBarItem.hoverBackground": "#1ee1ea",
23
+ "statusBarItem.remoteBackground": "#4de7ee",
24
+ "statusBarItem.remoteForeground": "#15202b",
25
+ "titleBar.activeBackground": "#4de7ee",
26
+ "titleBar.activeForeground": "#15202b",
27
+ "titleBar.inactiveBackground": "#4de7ee99",
28
+ "titleBar.inactiveForeground": "#15202b99"
29
+ },
30
+ "peacock.color": "#4de7ee",
31
+ "workbench.colorTheme": "Visual Studio 2019 Dark"
32
+ }
33
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.37",
3
+ "version": "0.1.38",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -25,7 +25,7 @@
25
25
  "clean": "rm -rf *.js *.d.ts *.js.map bin && cd msger-native && cargo clean",
26
26
  "test": "node test.js",
27
27
  "postinstall": "node postinstall.js",
28
- "prepublishOnly": "npm run build:ts && npm run build:native:all",
28
+ "prepublishO nly": "npm run build:ts && npm run build:native:all",
29
29
  "prerelease:local": "git add -A && (git diff-index --quiet HEAD || git commit -m \"Pre-release commit\")",
30
30
  "preversion": "npm run build:ts && npm run build:native:all && git add -A",
31
31
  "postversion": "git push && git push --tags",