@ianlangs/mathscript 1.6.2 → 1.6.3

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/mpm/mpm.js CHANGED
@@ -5,7 +5,7 @@ import https from "https"
5
5
  import { execSync } from "child_process"
6
6
 
7
7
  if (process.argv[2] === "-v" || process.argv[2] === "--version") {
8
- (async () => {
8
+ await (async () => {
9
9
  const url = "https://unpkg.com/@ianlangs/mathscript/package.json"
10
10
  const res = await fetch(url)
11
11
  const pkg = await res.json()
package/mpm/mpm.ms CHANGED
@@ -5,7 +5,7 @@ import https from "https"
5
5
  import { execSync } from "child_process"
6
6
 
7
7
  if (process.argv[2] === "-v" || process.argv[2] === "--version") {
8
- (async () => {
8
+ await (async () => {
9
9
  const url = "https://unpkg.com/@ianlangs/mathscript/package.json"
10
10
  const res = await fetch(url)
11
11
  const pkg = await res.json()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@ianlangs/mathscript",
4
- "version": "1.6.2",
4
+ "version": "1.6.3",
5
5
  "description": "superset de js",
6
6
  "main": "src/transpile.js",
7
7
  "scripts": {
package/src/msc.js CHANGED
@@ -3,7 +3,7 @@ import fs from 'fs'
3
3
  import { transpile } from './transpile.js'
4
4
 
5
5
  if (process.argv[2] === "-v" || process.argv[2] === "--version") {
6
- (async () => {
6
+ await (async () => {
7
7
  const url = "https://unpkg.com/@ianlangs/mathscript/package.json"
8
8
  const res = await fetch(url)
9
9
  const pkg = await res.json()
package/src/msnode.js CHANGED
@@ -3,7 +3,7 @@ import fs from 'fs'
3
3
  import { transpile } from './transpile.js'
4
4
 
5
5
  if (process.argv[2] === "-v" || process.argv[2] === "--version") {
6
- (async () => {
6
+ await (async () => {
7
7
  const url = "https://unpkg.com/@ianlangs/mathscript/package.json"
8
8
  const res = await fetch(url)
9
9
  const pkg = await res.json()