Skip to content

Commit

Permalink
Merge pull request #644 from magieno/support-copying-prototype-metada…
Browse files Browse the repository at this point in the history
…ta-in-the-mapping

Support copying prototype metadata in the mapping
  • Loading branch information
etiennenoel authored Jan 24, 2024
2 parents e477789 + e68e7f7 commit f876ef3
Show file tree
Hide file tree
Showing 65 changed files with 1,890 additions and 887 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# - run: npm install
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm run build
- run: npx eslint --ext .ts packages/**
- run: npm run test
Expand Down Expand Up @@ -63,9 +63,9 @@ jobs:
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm install
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# - run: npm install
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: git config --global user.name 'ima-bot'
- run: git config --global user.email '[email protected]'
- run: npm run bump-patch
Expand Down
32 changes: 24 additions & 8 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@pristine-ts/common": "file:packages/common",
"@pristine-ts/configuration": "file:packages/configuration",
"@pristine-ts/core": "file:packages/core",
"@pristine-ts/data-transformer": "file:packages/data-transformer",
"@pristine-ts/data-mapping": "file:packages/data-mapping",
"@pristine-ts/e2e": "file:tests/e2e",
"@pristine-ts/express": "file:packages/express",
"@pristine-ts/file": "file:packages/file",
Expand Down
231 changes: 231 additions & 0 deletions packages/data-mapping/package-lock.json

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

Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@pristine-ts/data-transformer",
"name": "@pristine-ts/data-mapping",
"version": "0.0.276",
"description": "",
"module": "dist/lib/esm/data-transformer.module.js",
"main": "dist/lib/cjs/data-transformer.module.js",
"types": "dist/types/data-transformer.module.d.ts",
"module": "dist/lib/esm/data-mapping.module.js",
"main": "dist/lib/cjs/data-mapping.module.js",
"types": "dist/types/data-mapping.module.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"prepublish": "npm run build",
Expand All @@ -21,7 +21,11 @@
},
"dependencies": {
"@pristine-ts/common": "file:../common",
"@pristine-ts/logging": "file:../logging"
"@pristine-ts/logging": "file:../logging",
"@pristine-ts/metadata": "~1.0.2",
"@pristine-ts/class-validator": "^1.0.22",
"class-transformer": "^0.5.1",
"tsyringe": "^4.8.0"
},
"jest": {
"transform": {
Expand Down
1 change: 1 addition & 0 deletions packages/data-mapping/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Data Mapping module.
1 change: 1 addition & 0 deletions packages/data-mapping/src/builders/builders.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./data-mapping.builder";
Loading

0 comments on commit f876ef3

Please sign in to comment.