Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Fix 0.1.0 publishing problems #228

Merged
merged 5 commits into from
Apr 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ node_modules/
# generated mapping files
*.js.map

# generated type definitions
*.d.ts

# Dashboard webpack
nodecg-io-core/dashboard/dist
!nodecg-io-core/dashboard/webpack.config.js
Expand Down
5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
// Hides js and js map files in the explorer windows of vs code
// Hides js, js map and ts definition files, that are generated by the build process, in the explorer windows of vs code
"vscode.tsc.compiler.alertTSConfigChanges": "never",
"files.exclude": {
"**/*.js": { "when": "$(basename).ts" },
"**/*.js.map": true
"**/*.js.map": true,
"**/*.d.ts": { "when": "$(basename).ts" }
}
}
8 changes: 7 additions & 1 deletion nodecg-io-ahk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@
"name": "derNiklaas",
"url": "https://github.com/derNiklaas"
},
"main": "extension",
"main": "extension/index",
"repository": {
"type": "git",
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-ahk"
},
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-android/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,23 @@
"name": "noeppi_noeppi",
"url": "https://github.com/noeppi-noeppi"
},
"main": "extension/index",
"repository": {
"type": "git",
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-android"
},
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"clean": "tsc -b --clean"
},
"main": "extension",
"keywords": [
"nodecg-io",
"nodecg-bundle"
Expand Down
1 change: 0 additions & 1 deletion nodecg-io-core/.npmignore

This file was deleted.

4 changes: 2 additions & 2 deletions nodecg-io-core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
// You can obviously still provide the full path if you wish.
export type { ObjectMap, Service, ServiceDependency, ServiceInstance } from "./extension/types";
export * from "./extension/utils/result";
export { ServiceBundle } from "./extension/serviceBundle";
export { requireService, ServiceProvider } from "./extension/serviceProvider";
export * from "./extension/serviceBundle";
export * from "./extension/serviceProvider";
12 changes: 11 additions & 1 deletion nodecg-io-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-core"
},
"files": [
"extension/**/*.js",
"extension/**/*.js.map",
"extension/**/*.d.ts",
"index.js",
"index.js.map",
"index.d.ts",
"*.json"
],
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down Expand Up @@ -42,6 +51,7 @@
},
"dependencies": {
"ajv": "^7.2.1",
"crypto-js": "^4.0.0"
"crypto-js": "^4.0.0",
"tslib": "^2.1.0"
}
}
8 changes: 7 additions & 1 deletion nodecg-io-curseforge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-curseforge"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
9 changes: 8 additions & 1 deletion nodecg-io-debug/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-debug"
},
"main": "extension",
"files": [
"dashboard",
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-discord"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-gsheets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-gsheets"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-intellij/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-intellij"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-irc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-irc"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-midi-input/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-midi-input"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-midi-output/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-midi-output"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-nanoleaf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-nanoleaf"
},
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand All @@ -30,11 +36,11 @@
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.33",
"@types/node-fetch": "^2.5.8",
"nodecg": "^1.8.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/node-fetch": "^2.5.8",
"node-fetch": "^2.6.1",
"nodecg-io-core": "^0.2.0"
}
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-obs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-obs"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-philipshue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-philipshue"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-rcon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-rcon"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-reddit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-reddit"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-sacn-receiver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-sacn-receiver"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-sacn-sender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-sacn-sender"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-serial/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-serial"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-slack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-slack"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-spotify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-spotify"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
8 changes: 7 additions & 1 deletion nodecg-io-streamdeck/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"url": "https://github.com/codeoverflow-org/nodecg-io.git",
"directory": "nodecg-io-streamdeck"
},
"main": "extension",
"files": [
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"*.json"
],
"main": "extension/index",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
Expand Down
Loading