Change build setup of JS clients, reintroduce beta publishing after losing it due to unmerged code (#238)

This commit is contained in:
Janos Dobronszki
2021-10-22 09:49:47 +01:00
committed by GitHub
parent 7cc2a86d0f
commit 293d5ecdde
140 changed files with 13946 additions and 643 deletions

View File

@@ -1,70 +1,78 @@
{
"author": "",
"dependencies": {
"@m3o/m3o-node": "^0.0.24"
"@m3o/m3o-node": "^0.0.24",
"@types/estree": "^0.0.47",
"chalk": "^2.4.2",
"move-file": "^3.0.0",
"ncp": "^2.0.0",
"rimraf": "^3.0.2"
},
"description": "",
"devDependencies": {
"prettier": "^2.4.1",
"typescript": "^3.5.1"
},
"exports": {
"./address": "./dist/address/index.js",
"./answer": "./dist/answer/index.js",
"./cache": "./dist/cache/index.js",
"./cmd": "./dist/cmd/index.js",
"./crypto": "./dist/crypto/index.js",
"./currency": "./dist/currency/index.js",
"./db": "./dist/db/index.js",
"./email": "./dist/email/index.js",
"./emoji": "./dist/emoji/index.js",
"./evchargers": "./dist/evchargers/index.js",
"./file": "./dist/file/index.js",
"./forex": "./dist/forex/index.js",
"./function": "./dist/function/index.js",
"./geocoding": "./dist/geocoding/index.js",
"./gifs": "./dist/gifs/index.js",
"./helloworld": "./dist/helloworld/index.js",
"./holidays": "./dist/holidays/index.js",
"./id": "./dist/id/index.js",
"./image": "./dist/image/index.js",
"./ip": "./dist/ip/index.js",
"./location": "./dist/location/index.js",
"./notes": "./dist/notes/index.js",
"./otp": "./dist/otp/index.js",
"./pkg": "./dist/pkg/index.js",
"./postcode": "./dist/postcode/index.js",
"./prayer": "./dist/prayer/index.js",
"./qr": "./dist/qr/index.js",
"./quran": "./dist/quran/index.js",
"./routing": "./dist/routing/index.js",
"./rss": "./dist/rss/index.js",
"./sentiment": "./dist/sentiment/index.js",
"./sms": "./dist/sms/index.js",
"./stock": "./dist/stock/index.js",
"./stream": "./dist/stream/index.js",
"./sunnah": "./dist/sunnah/index.js",
"./test": "./dist/test/index.js",
"./thumbnail": "./dist/thumbnail/index.js",
"./time": "./dist/time/index.js",
"./twitter": "./dist/twitter/index.js",
"./url": "./dist/url/index.js",
"./user": "./dist/user/index.js",
"./vehicle": "./dist/vehicle/index.js",
"./weather": "./dist/weather/index.js"
},
"files": [
"esm",
"index.js",
"index.d.ts",
"address",
"answer",
"cache",
"cmd",
"crypto",
"currency",
"db",
"email",
"emoji",
"evchargers",
"file",
"forex",
"function",
"geocoding",
"gifs",
"helloworld",
"holidays",
"id",
"image",
"ip",
"location",
"notes",
"otp",
"pkg",
"postcode",
"prayer",
"qr",
"quran",
"routing",
"rss",
"sentiment",
"sms",
"stock",
"stream",
"sunnah",
"test",
"thumbnail",
"time",
"twitter",
"url",
"user",
"vehicle",
"weather"
],
"license": "ISC",
"main": "dist",
"main": "index.js",
"module": "esm/index.js",
"name": "m3o",
"repository": {
"type": "git",
"url": "https://github.com/micro/services"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" \u0026\u0026 exit 1"
"build": "npm run clean \u0026\u0026 tsc \u0026\u0026 tsc --p tsconfig.es.json \u0026\u0026 node build.js",
"clean": "rimraf ./tmp",
"prepare": "npm run build"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.0.555"
"types": "index.d.ts",
"version": "1.0.556-beta3"
}