Skip to content

Commit

Permalink
Merge pull request #8 from digitaldrummerj/feature/v3
Browse files Browse the repository at this point in the history
update: to v3 compat module and add presets
  • Loading branch information
josephdadams authored Jul 5, 2023
2 parents e603e35 + afcc21d commit 809c254
Show file tree
Hide file tree
Showing 15 changed files with 2,937 additions and 293 deletions.
19 changes: 19 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
extends: './node_modules/@companion-module/tools/eslint/main.cjs',
overrides: [
{
files: ['*.ts'],
rules: {
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'prettier/prettier': ['warn', { endOfLine: 'lf' }],
},
},
],
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
node_modules/
/pkg
/pkg.tgz
DEBUG-PACKAGED
dist/
9 changes: 9 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# dependencies
node_modules

# Ignore package related files:
package.json
yarn.lock

# Docs
CHANGELOG.md
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# companion-module-irisdown-remoteshowcontrol
See HELP.md and LICENSE

See HELP.md and LICENSE
File renamed without changes.
32 changes: 32 additions & 0 deletions companion/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"id": "irisdown-remoteshowcontrol",
"name": "irisdown-remoteshowcontrol",
"shortname": "rsc",
"description": "Module for Irisdown Remote Show Control a Powerpoint Plugin for Windows",
"version": "2.0.0",
"license": "MIT",
"repository": "git+https://github.com/bitfocus/companion-module-irisdown-remoteshowcontrol.git",
"bugs": "https://github.com/bitfocus/companion-module-irisdown-remoteshowcontrol/issues",
"maintainers": [
{
"name": "Per Røine",
"email": "per.roine@gmail.com"
}
],
"legacyIds": [
"pptrsc"
],
"runtime": {
"type": "node18",
"api": "nodejs-ipc",
"apiVersion": "0.0.0",
"entrypoint": "../dist/index.js"
},
"manufacturer": "Irisdown",
"products": [
"Remote Show Control"
],
"keywords": [
"Software"
]
}
271 changes: 0 additions & 271 deletions index.js

This file was deleted.

Loading

0 comments on commit 809c254

Please sign in to comment.