Skip to content

Commit

Permalink
Merge pull request #8 from EndoHizumi/develop
Browse files Browse the repository at this point in the history
0.2.1
  • Loading branch information
EndoHizumi authored Jul 12, 2024
2 parents daf4492 + b5bfa10 commit 9f78a35
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webtalekit",
"version": "0.2.0",
"version": "0.2.1",
"description": "Web知識でノベルゲーを作ることを目指したやつ",
"main": "./src/index.js",
"scripts": {
Expand All @@ -15,6 +15,7 @@
"dependencies": {
"html-minifier": "^4.0.0",
"html-to-json-parser": "^2.0.1",
"storejs": "^2.1.0",
"stacktrace-js": "^2.0.2"
},
"devDependencies": {
Expand All @@ -30,7 +31,6 @@
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"storejs": "^2.1.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
Expand Down
7 changes: 4 additions & 3 deletions src/utils/store.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import storejs from 'storejs'
import store from 'storejs'

export const generateStore = () => {
const allData = storejs.getAll()
const generateStore = () => {
const allData = store.getAll()

class Store {
constructor(data) {
Expand Down Expand Up @@ -29,3 +29,4 @@ export const generateStore = () => {
},
})
}
export default generateStore

0 comments on commit 9f78a35

Please sign in to comment.