Skip to content
Open
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: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"clean": "rimraf ./*.log && lerna exec --parallel -- rimraf coverage lib/* temp",
"build": "yarn clean && lerna exec --parallel -- babel src --out-dir lib --config-file ../../.babelrc",
"build": "yarn clean && lerna exec --parallel -- babel src --out-dir lib --config-file ../../.babelrc && lerna run build",
"test": "yarn build && yarn lint && lerna exec --concurrency 1 -- nyc mocha --recursive",
"type": "lerna exec -- tsc",
"type:doc": "lerna exec --scope @ridi/content-parser -- typedoc",
Expand Down Expand Up @@ -40,7 +40,7 @@
"sinon": "^11.1.1",
"typedoc": "^0.20.36",
"typedoc-plugin-external-module-name": "^4.0.6",
"typescript": "^4.0.5"
"typescript": "^5.0.4"
},
"esm": {
"cjs": true
Expand Down
9 changes: 7 additions & 2 deletions packages/comic-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"name": "Ridibooks Viewer Team",
"mail": "viewer.team@ridi.com"
},
"scripts": {
"build": "npx tsc || exit 0"
},
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -17,15 +20,17 @@
"lib",
"type"
],
"main": "lib/index.js",
"types": "type/index.d.ts",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@ridi/parser-core": "0.7.4-alpha.1",
"adm-zip": "^0.5.10",
"fs-extra": "^10.0.0",
"image-size": "^1.0.0",
"string-natural-compare": "^3.0.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/node": "^14.14.6"
}
}
218 changes: 0 additions & 218 deletions packages/comic-parser/src/ComicParser.js

This file was deleted.

Loading