Skip to content

Commit

Permalink
v1.0.3 : 패키지 배포시 포함될 파일 경로 추가, new 커맨드 시 생성되는 tsconfig.json 파일의 inclu…
Browse files Browse the repository at this point in the history
…de 항목 수정.
  • Loading branch information
wisdomstar94 committed Jan 20, 2024
1 parent fd74f1c commit 61f4ab7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "torytis"
version = "1.0.2"
version = "1.0.3"
edition = "2021"

[dependencies]
Expand Down
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.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wisdomstar94/torytis",
"version": "1.0.2",
"version": "1.0.3",
"description": "티스토리 블로그 스킨 개발 프레임워크",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -30,7 +30,9 @@
"url": "https://github.com/wisdomstar94/torytis/issues"
},
"files": [
"npm/**/*"
"npm/**/*",
"index.ts",
"types/**/*"
],
"dependencies": {
"binary-install": "^1.1.0"
Expand Down
4 changes: 2 additions & 2 deletions static/project-template/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"compilerOptions": {
"jsx": "react",
"jsx": "react-jsx",
"module": "commonjs",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
},
"include": ["./src/", "./torytis-build.tsx", "./torytis-env.d.ts", "./torytis-variable.d.ts"],
"include": ["./src/**/*", "./torytis-build.tsx", "./torytis-env.d.ts", "./torytis-variable.d.ts"],
"types": ["node"]
}

0 comments on commit 61f4ab7

Please sign in to comment.