Skip to content

Commit

Permalink
chore(octra): update Nx to 16.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpoemp committed Sep 21, 2023
1 parent 0787107 commit b94d9c1
Show file tree
Hide file tree
Showing 12 changed files with 53,577 additions and 5,842 deletions.
3 changes: 2 additions & 1 deletion babel.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
{
"builtIns": false
}
]
],
"@babel/preset-flow"
]
}
3 changes: 1 addition & 2 deletions libs/annotation/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
"libs/annotation/src/LICENSE.txt",
"libs/annotation/src/README.md"
],
"babelUpwardRootMode": true,
"updateBuildableProjectDepsInPackageJson": true
"babelUpwardRootMode": true
}
},
"bundle": {
Expand Down
3 changes: 1 addition & 2 deletions libs/assets/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"output": "./src/lib/schemata"
}
],
"babelUpwardRootMode": true,
"updateBuildableProjectDepsInPackageJson": true
"babelUpwardRootMode": true
}
},
"bundle": {
Expand Down
3 changes: 1 addition & 2 deletions libs/json-sets/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
"libs/json-sets/src/LICENSE.txt",
"libs/json-sets/src/README.md"
],
"babelUpwardRootMode": true,
"updateBuildableProjectDepsInPackageJson": true
"babelUpwardRootMode": true
}
},
"bundle": {
Expand Down
3 changes: 1 addition & 2 deletions libs/media/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
"compiler": "babel",
"external": ["typescript"],
"format": ["cjs", "esm"],
"babelUpwardRootMode": true,
"updateBuildableProjectDepsInPackageJson": true
"babelUpwardRootMode": true
}
},
"bundle": {
Expand Down
3 changes: 1 addition & 2 deletions libs/ngx-components/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"executor": "@nx/angular:package",
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
"options": {
"project": "libs/ngx-components/ng-package.json",
"updateBuildableProjectDepsInPackageJson": true
"project": "libs/ngx-components/ng-package.json"
},
"configurations": {
"production": {
Expand Down
3 changes: 1 addition & 2 deletions libs/ngx-utilities/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"executor": "@nx/angular:package",
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
"options": {
"project": "libs/ngx-utilities/ng-package.json",
"updateBuildableProjectDepsInPackageJson": true
"project": "libs/ngx-utilities/ng-package.json"
},
"configurations": {
"production": {
Expand Down
3 changes: 1 addition & 2 deletions libs/utilities/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
"compiler": "babel",
"external": ["typescript"],
"format": ["cjs", "esm"],
"babelUpwardRootMode": true,
"updateBuildableProjectDepsInPackageJson": true
"babelUpwardRootMode": true
}
},
"bundle": {
Expand Down
47 changes: 35 additions & 12 deletions libs/web-media/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
"outputs": ["{options.outputPath}"],
"outputs": [
"{options.outputPath}"
],
"options": {
"babelUpwardRootMode": true,
"outputPath": "dist/libs/web-media",
"main": "libs/web-media/src/index.ts",
"entryFile": "libs/web-media/src/index.ts",
Expand All @@ -18,20 +21,32 @@
],
"project": "libs/web-media/package.json",
"compiler": "babel",
"external": ["typescript"],
"format": ["cjs", "esm"],
"babelUpwardRootMode": true,
"updateBuildableProjectDepsInPackageJson": true
"external": [
"typescript",
"@octra/media",
"@octra/utilities"
],
"format": [
"cjs",
"esm"
]
},
"dependsOn": ["media"]
"dependsOn": [
"media",
"utilities"
]
},
"bundle": {
"executor": "@nx/webpack:webpack",
"outputs": ["{options.outputPath}"],
"outputs": [
"{options.outputPath}"
],
"options": {
"babelUpwardRootMode": true,
"libraryName": "OctraWebMedia",
"libraryTargets": ["umd"],
"libraryTargets": [
"umd"
],
"index": "",
"tsConfig": "libs/web-media/tsconfig.lib.json",
"main": "libs/web-media/src/index.ts",
Expand All @@ -46,20 +61,28 @@
"namedChunks": false,
"webpackConfig": "webpack.config.js"
},
"dependsOn": ["build"]
"dependsOn": [
"build"
]
},
"publish": {
"executor": "nx:run-commands",
"options": {
"command": "node tools/scripts/publish.mjs web-media {args.ver} {args.tag}"
},
"dependsOn": ["build"]
"dependsOn": [
"build"
]
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"outputs": [
"{options.outputFile}"
],
"options": {
"lintFilePatterns": ["libs/web-media/**/*.ts"]
"lintFilePatterns": [
"libs/web-media/**/*.ts"
]
}
}
},
Expand Down
Loading

0 comments on commit b94d9c1

Please sign in to comment.