forked from evs-broadcast/node-emberplus
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
7,704 additions
and
3,864 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs | ||
spec: "@yarnpkg/plugin-version" | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-3.6.3.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,22 +12,26 @@ | |
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"prepare": "husky install", | ||
"build": "rimraf dist && yarn build:main", | ||
"build": "rimraf dist && run build:main", | ||
"build:main": "tsc -p tsconfig.build.json", | ||
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist", | ||
"lint": "yarn lint:raw .", | ||
"lint-fix": "yarn lint --fix", | ||
"lint:raw": "run eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist", | ||
"lint": "run lint:raw .", | ||
"lint-fix": "run lint --fix", | ||
"unit": "jest --coverage", | ||
"test": "yarn lint && jest test", | ||
"test:coverage": "yarn test -- --coverage", | ||
"test": "run lint && jest test", | ||
"test:coverage": "run test -- --coverage", | ||
"cov": "jest --coverage; open-cli coverage/lcov-report/index.html", | ||
"cov-open": "open-cli coverage/lcov-report/index.html", | ||
"changelog": "yarn sofie-version", | ||
"release": "yarn reset && yarn test && yarn sofie-version", | ||
"changelog": "sofie-version", | ||
"release": "run reset && run test && sofie-version", | ||
"reset": "git clean -dfx && git reset --hard && yarn", | ||
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate", | ||
"validate:dev-dependencies": "yarn audit --groups devDependencies", | ||
"license-validate": "yarn sofie-licensecheck --allowPackages [email protected]" | ||
"validate:dependencies": "yarn npm audit --environment production && run license-validate", | ||
"validate:dev-dependencies": "yarn npm audit --environment development", | ||
"license-validate": "sofie-licensecheck --allowPackages [email protected]", | ||
|
||
"eslint": "./node_modules/.bin/eslint", | ||
"prettier": "./node_modules/.bin/prettier", | ||
"lint-staged": "./node_modules/.bin/lint-staged" | ||
}, | ||
"contributors": [ | ||
"Gilles Dufour <[email protected]> (www.gdnet.be)", | ||
|
@@ -62,20 +66,18 @@ | |
"url": "https://github.com/nrkno/sofie-emberplus-connection/issues" | ||
}, | ||
"homepage": "https://github.com/nrkno/sofie-emberplus-connection#readme", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"keywords": [ | ||
"emberplus", | ||
"lawo" | ||
], | ||
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json", | ||
"lint-staged": { | ||
"*.{css,json,md,scss}": [ | ||
"prettier --write" | ||
"yarn prettier --write" | ||
], | ||
"*.{ts,tsx,js,jsx}": [ | ||
"yarn lint:raw --fix" | ||
] | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.