bananass 0.5.2 → 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 +1 -1
- package/build/core/constants.d.ts +1 -1
- package/package.json +10 -10
- package/src/core/constants.js +0 -1
package/README.md
CHANGED
|
@@ -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} */ ([
|