Skip to content

Commit

Permalink
Merge pull request #158 from wingkwong/develop
Browse files Browse the repository at this point in the history
0.7.0 Release
  • Loading branch information
wingkwong authored Nov 11, 2023
2 parents 4375dd2 + 9301fa8 commit 211c56f
Show file tree
Hide file tree
Showing 22 changed files with 3,916 additions and 1,519 deletions.
9 changes: 7 additions & 2 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ plugins:
- react
rules: {
"no-param-reassign": 0,
"max-len": ["error", { "code": 120 }],
"react/prop-types": "off"
"max-len": "off",
"react/prop-types": "off",
"no-console": "off",
"no-alert": "off",
"no-unused-vars": "off",
"react/no-danger": "off",
"no-restricted-globals": "off",
}
8 changes: 7 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
docs
src
.babelrc
webpack.config.js
.eslintrc.yml
.gitignore
.npmignore
webpack.config.js
rollup.config.mjs
renovate.json
package-lock.json
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## 0.7.0

- Fix lint issues
- Refactor webpack, filter design
- Update demo site
- Add rollup
- Bump dependencies

## 0.6.0

- Display marks in questions (marksOfQuestion)
Expand Down
2 changes: 2 additions & 0 deletions dist/index.es.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta http-equiv="X-UA-Compatible" content="ie=edge"><meta name="description" content="React Quiz Component Demo"><title>React Quiz Component Demo</title><script defer="defer" src="bundle.js"></script><link href="main.css" rel="stylesheet"></head><body><div id="app"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta http-equiv="X-UA-Compatible" content="ie=edge"><meta name="description" content="React Quiz Component Demo"><link rel="shortcut icon" type="image/x-icon" href="favicon.ico"><title>React Quiz Component Demo</title><script defer="defer" src="bundle.js"></script><link href="main.css" rel="stylesheet"></head><body><div id="app"></div></body></html>
175 changes: 1 addition & 174 deletions docs/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 211c56f

Please sign in to comment.