Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

script tool fixes #312

Merged
merged 3 commits into from
Nov 6, 2023
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
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
module.exports = {
root: true,
env: {
node: true

Check warning on line 4 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Insert `,`

Check warning on line 4 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Insert `,`
},
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
parserOptions: {
ecmaVersion: 2020

Check warning on line 8 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Insert `,`

Check warning on line 8 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Insert `,`
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/multi-word-component-names": "off",
"vue/no-reserved-component-names": "off",
}

Check warning on line 15 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Insert `,`

Check warning on line 15 in .eslintrc.js

View workflow job for this annotation

GitHub Actions / Lint Code Base

Insert `,`
};
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Release Notes

### Version 2.16.2
- fixed custom script format to support new script tool JSON
- updated packages to be compatible with Node >= 18 again

---

### Version 2.16.1
Updated character night order to be consistent with script tool
- Updated character night order to be consistent with script tool

---

Expand Down
Loading
Loading