Skip to content

Commit

Permalink
feat(classes/mapped-types): add Mapped Types
Browse files Browse the repository at this point in the history
  • Loading branch information
nartc committed Mar 12, 2021
1 parent 1828b48 commit 46e02ba
Show file tree
Hide file tree
Showing 26 changed files with 16,411 additions and 41 deletions.
26 changes: 18 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,16 @@
"onlyDependOnLibsWithTags": [
"type:library",
"type:type-defs",
"type:util",
"type:plugin"
]
},
{
"sourceTag": "type:library",
"onlyDependOnLibsWithTags": ["type:type-defs", "type:util"]
"onlyDependOnLibsWithTags": ["type:type-defs"]
},
{
"sourceTag": "type:integration",
"onlyDependOnLibsWithTags": [
"type:library",
"type:type-defs",
"type:util"
]
"onlyDependOnLibsWithTags": ["type:library", "type:type-defs"]
},
{
"sourceTag": "type:test",
Expand All @@ -43,13 +38,28 @@
"type:plugin",
"type:integration",
"type:type-defs",
"type:util",
"type:transformer-plugin"
]
},
{
"sourceTag": "type:transformer-plugin",
"onlyDependOnLibsWithTags": ["type:plugin"]
},
{
"sourceTag": "type:utility",
"onlyDependOnLibsWithTags": [
"type:library",
"type:type-defs",
"type:plugin"
]
},
{
"sourceTag": "scope:classes",
"onlyDependOnLibsWithTags": [
"type:type-defs",
"scope:core",
"scope:classes"
]
}
]
}
Expand Down
Empty file.
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ module.exports = {
'<rootDir>/packages/nestjs-integration-test',
'<rootDir>/packages/experimental/transformer-plugin',
'<rootDir>/packages/sequelize',
'<rootDir>/packages/classes/mapped-types',
],
};
9 changes: 6 additions & 3 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
},
"projects": {
"core": {
"tags": ["type:library"]
"tags": ["scope:core", "type:library"]
},
"classes": {
"tags": ["type:plugin"]
"tags": ["scope:classes", "type:plugin"]
},
"types": {
"tags": ["type:type-defs"]
Expand All @@ -45,10 +45,13 @@
"tags": ["type:test"]
},
"classes-experimental-transformer-plugin": {
"tags": ["type:transformer-plugin"]
"tags": ["scope:classes", "type:transformer-plugin"]
},
"sequelize": {
"tags": ["type:plugin"]
},
"classes-mapped-types": {
"tags": ["scope:classes", "type:utility"]
}
},
"workspaceLayout": {
Expand Down
Loading

0 comments on commit 46e02ba

Please sign in to comment.