Skip to content

Commit

Permalink
Bump build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelBCarter committed Oct 12, 2023
1 parent 2e479f3 commit 28add9f
Show file tree
Hide file tree
Showing 5 changed files with 2,773 additions and 2,055 deletions.
1 change: 1 addition & 0 deletions cspell.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ words:
- swiftshader
- templating
- Trouw
- Tsup
- xylabs
- XYO
ignoreWords: []
Expand Down
58 changes: 31 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"start-meta": "dist/cjs/bin/start-meta.js"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.377.0",
"@aws-sdk/client-secrets-manager": "^3.427.0",
"@xylabs/assert": "^2.9.3",
"@xylabs/delay": "^2.9.3",
"@xylabs/forget": "^2.9.3",
Expand Down Expand Up @@ -46,23 +46,23 @@
},
"description": "Meta Server - adjusts meta data on index.html for served static site",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jest-image-snapshot": "^6.1.0",
"@types/lodash": "^4.14.196",
"@types/node": "^20.4.5",
"@types/serve-static": "^1.15.2",
"@types/supertest": "^2.0.12",
"@xylabs/eslint-config": "^2.19.0",
"@xylabs/eslint-config-react": "^2.19.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@types/express": "^4.17.19",
"@types/jest": "^29.5.5",
"@types/jest-image-snapshot": "^6.2.1",
"@types/lodash": "^4.14.199",
"@types/node": "^20.8.4",
"@types/serve-static": "^1.15.3",
"@types/supertest": "^2.0.14",
"@xylabs/eslint-config": "^3.1.9",
"@xylabs/eslint-config-react": "^3.1.9",
"@xylabs/jest-helpers": "^2.9.3",
"@xylabs/ts-scripts-yarn3": "^2.19.0",
"@xylabs/tsconfig": "^2.19.0",
"@xylabs/tsconfig-dom": "^2.19.0",
"@xylabs/tsconfig-dom-jest": "^2.19.0",
"@xylabs/tsconfig-jest": "^2.19.0",
"@xylabs/ts-scripts-yarn3": "^3.1.9",
"@xylabs/tsconfig": "^3.1.9",
"@xylabs/tsconfig-dom": "^3.1.9",
"@xylabs/tsconfig-dom-jest": "^3.1.9",
"@xylabs/tsconfig-jest": "^3.1.9",
"axios": "^1.4.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
Expand All @@ -73,25 +73,29 @@
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
"typescript": "^5.2.2"
},
"browser": "dist/esm/index.js",
"docs": "dist/docs.json",
"exports": {
".": {
"node": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"default": "./dist/esm/index.js"
"require": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
},
"import": {
"types": "./dist/node/index.d.mts",
"default": "./dist/node/index.mjs"
}
}
},
"./dist/docs.json": {
"./docs": {
"default": "./dist/docs.json"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"main": "dist/node/index.js",
"module": "dist/node/index.mjs",
"homepage": "https://xylabs.com",
"keywords": [
"xylabs",
Expand Down Expand Up @@ -123,7 +127,7 @@
"test": "yarn jest"
},
"sideEffects": false,
"types": "dist/types/index.d.ts",
"types": "dist/node/index.d.ts",
"version": "2.2.0",
"engines": {
"node": ">=18.13.0"
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"compilerOptions": {
"declarationDir": "./dist/types",
"typeRoots": []
},
"extends": "@xylabs/tsconfig-dom"
Expand Down
14 changes: 14 additions & 0 deletions xy.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { XyTsupConfig } from '@xylabs/ts-scripts-yarn3'
const config: XyTsupConfig = {
compile: {
browser: {
src: false,
},
node: {
src: true,
},
},
}

// eslint-disable-next-line import/no-default-export
export default config
Loading

0 comments on commit 28add9f

Please sign in to comment.