Skip to content

Commit

Permalink
bump lotsa deps
Browse files Browse the repository at this point in the history
  • Loading branch information
suchipi committed Sep 9, 2024
1 parent 829f29f commit e981c19
Show file tree
Hide file tree
Showing 7 changed files with 2,305 additions and 1,853 deletions.
4,097 changes: 2,272 additions & 1,825 deletions package-lock.json

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,47 +5,47 @@
"author": "Lily Skye <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@danielx/civet": "^0.6.43",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@danielx/civet": "^0.7.29",
"@iarna/toml": "^2.2.5",
"@suchipi/babel-highlight": "^7.22.6",
"@suchipi/macaroni": "^0.1.0",
"@suchipi/macaroni": "^0.2.0",
"@suchipi/marked-terminal": "^5.2.0",
"@suchipi/print": "^2.4.0",
"@suchipi/print": "^2.5.0",
"@suchipi/quickjs": "^0.9.0",
"@suchipi/shinobi": "^1.0.1",
"@types/coffeescript": "^2.5.2",
"@types/jest": "^29.2.4",
"@types/coffeescript": "^2.5.7",
"@types/jest": "^29.5.12",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.7.7",
"@types/papaparse": "^5.3.5",
"@types/node": "^22.5.4",
"@types/papaparse": "^5.3.14",
"a-mimir": "^1.0.1",
"babel-jest": "^29.3.1",
"babel-jest": "^29.7.0",
"chalk": "^4.1.2",
"clef-parse": "^0.5.0",
"clef-parse": "^0.6.0",
"coffeescript": "^2.7.0",
"first-base": "^0.2.0",
"first-base": "^1.5.0",
"globby": "^11.1.0",
"jest": "^29.3.1",
"kame": "^0.11.0",
"jest": "^29.7.0",
"kame": "^0.14.0",
"kleur": "^4.1.5",
"marked": "^5.1.2",
"minimatch": "^5.1.0",
"papaparse": "^5.3.2",
"papaparse": "^5.4.1",
"path-less-traveled": "^2.1.0",
"pheno": "^0.7.1",
"prettier": "^2.7.1",
"resolve-everything": "^0.1.1",
"pheno": "^0.12.0",
"prettier": "^2.8.8",
"resolve-everything": "^0.1.2",
"string-dedent": "^3.0.1",
"strip-ansi": "^6.0.1",
"sucrase": "^3.28.0",
"tmp": "^0.2.1",
"typescript": "^4.7.4",
"typescript-assert-utils": "^1.0.0",
"sucrase": "^3.35.0",
"tmp": "^0.2.3",
"typescript": "^5.5.4",
"typescript-assert-utils": "^1.1.0",
"wrap-ansi": "^7.0.0",
"yaml": "^2.1.3"
"yaml": "^2.5.1"
},
"scripts": {
"build": "meta/build.sh",
Expand Down
6 changes: 3 additions & 3 deletions src/api/assert/assert.type.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ test("assert.type - global constructor, fail", async () => {
{
"code": 1,
"error": false,
"stderr": "Error: Expected value of type string, but received 2
"stderr": "TypeError: Expected value of type string, but received 2
at somewhere
",
"stdout": "",
Expand All @@ -52,7 +52,7 @@ test("assert.type - types.namespace, fail", async () => {
{
"code": 1,
"error": false,
"stderr": "Error: Expected value of type string, but received 2
"stderr": "TypeError: Expected value of type string, but received 2
at somewhere
",
"stdout": "",
Expand Down Expand Up @@ -86,7 +86,7 @@ test("assert.type - custom class, fail", async () => {
{
"code": 1,
"error": false,
"stderr": "Error: Expected value of type instanceOf("Something"), but received null
"stderr": "TypeError: Expected value of type instanceOf(Something), but received null
at somewhere
",
"stdout": "",
Expand Down
2 changes: 1 addition & 1 deletion src/api/parse-script-args/parse-script-args.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export function parseScriptArgs(
const optionsClone = { ...options };
for (const key of pathKeys) {
if (Object.hasOwn(optionsClone, key)) {
optionsClone[key] = new Path(optionsClone[key]);
optionsClone[key] = new Path(optionsClone[key].toString());
}
}

Expand Down
1 change: 1 addition & 0 deletions src/compilers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ const compilers = {
const compiled = getCivet().compile(code, {
js: true,
filename: options?.filename,
sync: true,
});
return compilers.jsx(compiled, options);
},
Expand Down
1 change: 1 addition & 0 deletions src/globals.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ test("globals", async () => {
[ ] setTimeout: function
[ ] clearTimeout: function
[ ] require: function
[ ] __kame_instances__: object
[ ] std: object
[ ] os: object
[x] basename: function
Expand Down
3 changes: 3 additions & 0 deletions src/kame-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ exports.resolve = (id, fromFilePath) => {
// these but don't actually need them)
case "fs":
case "path":
case "node:path":
case "node:module":
case "vm":
case "node:vm":
case "stream": {
return stubPath;
}
Expand Down

0 comments on commit e981c19

Please sign in to comment.