bananass 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/build/core/constants.d.ts +1 -1
- package/package.json +10 -10
- package/src/core/constants.js +0 -1
package/README.md
CHANGED
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
- `fs` 모듈을 사용한 더욱 빠른 입출력 지원.
|
|
110
110
|
- 편의를 위한 다양한 CLI 명령어 지원.
|
|
111
111
|
- 풍부하고 상세한 문서 지원.
|
|
112
|
-
- ESLint 및 Prettier
|
|
112
|
+
- ESLint 및 Prettier 설정 지원.
|
|
113
113
|
|
|
114
114
|
어떤가요? 바나나 프레임워크를 통해 더욱 편리한 문제 풀이를 경험해보고 싶지 않으신가요?
|
|
115
115
|
|
|
@@ -154,7 +154,7 @@ npm create bananass@latest
|
|
|
154
154
|
|
|
155
155
|
## 보안<sup>Security</sup>
|
|
156
156
|
|
|
157
|
-
보안 문제를 발견하셨나요? [보안](
|
|
157
|
+
보안 문제를 발견하셨나요? [보안](https://github.com/lumirlumir/.github/blob/main/SECURITY_KO.md#%EB%B3%B4%EC%95%88) 문서를 참고해주세요.
|
|
158
158
|
|
|
159
159
|
## 라이선스<sup>License</sup>
|
|
160
160
|
|
|
@@ -33,7 +33,7 @@ export const NODE_VERSION_BAEKJOON: "16.13.1";
|
|
|
33
33
|
export const NODE_VERSION_CODEFORCES: "15.8.0";
|
|
34
34
|
/** @satisfies {string} */
|
|
35
35
|
export const WEBPACK_BANNER: string;
|
|
36
|
-
export const BANANASS_PKG_NAMES: readonly ["bananass", "bananass-utils-console", "create-bananass", "eslint-config-bananass"
|
|
36
|
+
export const BANANASS_PKG_NAMES: readonly ["bananass", "bananass-utils-console", "create-bananass", "eslint-config-bananass"];
|
|
37
37
|
export const SUPPORTED_SOLUTION_FILE_EXTENSIONS: readonly [".js", ".mjs", ".cjs", ".ts", ".mts", ".cts"];
|
|
38
38
|
export const SUPPORTED_CONFIG_FILE_NAMES: ("bananass.config.cjs" | "bananass.config.js" | "bananass.config.mjs" | "bananass.config.ts" | "bananass.config.mts" | "bananass.config.cts")[];
|
|
39
39
|
import type { Problem } from "./types/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bananass",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Baekjoon Framework for JavaScript.🍌",
|
|
6
6
|
"exports": {
|
|
@@ -87,20 +87,20 @@
|
|
|
87
87
|
"dev": "node src/cli.js"
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
|
-
"@babel/core": "^7.
|
|
91
|
-
"@babel/plugin-transform-modules-commonjs": "^7.
|
|
92
|
-
"@babel/plugin-transform-typescript": "^7.28.
|
|
93
|
-
"@babel/preset-env": "^7.
|
|
90
|
+
"@babel/core": "^7.29.0",
|
|
91
|
+
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
|
|
92
|
+
"@babel/plugin-transform-typescript": "^7.28.6",
|
|
93
|
+
"@babel/preset-env": "^7.29.0",
|
|
94
94
|
"babel-loader": "^10.0.0",
|
|
95
|
-
"bananass-utils-console": "^0.
|
|
96
|
-
"commander": "^14.0.
|
|
95
|
+
"bananass-utils-console": "^0.6.0",
|
|
96
|
+
"commander": "^14.0.2",
|
|
97
97
|
"defu": "^6.1.4",
|
|
98
98
|
"enhanced-resolve": "^5.18.3",
|
|
99
|
-
"envinfo": "^7.
|
|
99
|
+
"envinfo": "^7.21.0",
|
|
100
100
|
"jiti": "^2.6.1",
|
|
101
101
|
"open": "^10.2.0",
|
|
102
|
-
"webpack": "^5.
|
|
103
|
-
"zod": "^4.
|
|
102
|
+
"webpack": "^5.105.1",
|
|
103
|
+
"zod": "^4.3.5"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
106
|
"@types/babel__core": "^7.20.5",
|
package/src/core/constants.js
CHANGED
|
@@ -103,7 +103,6 @@ export const BANANASS_PKG_NAMES = /** @type {const} */ ([
|
|
|
103
103
|
'bananass-utils-console',
|
|
104
104
|
'create-bananass',
|
|
105
105
|
'eslint-config-bananass',
|
|
106
|
-
'prettier-config-bananass',
|
|
107
106
|
]);
|
|
108
107
|
|
|
109
108
|
export const SUPPORTED_SOLUTION_FILE_EXTENSIONS = /** @type {const} */ ([
|