Skip to content

Commit

Permalink
Merge pull request #26 from design4pro/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
rafalwolak committed Nov 30, 2022
2 parents 0306560 + 598c5c0 commit 8ba1d19
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout [main] 🛎️
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export class CustomWebpackBuilder {
root: Path,
config: CustomWebpackBuilderConfig,
baseWebpackConfig: Configuration,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
buildOptions: any,
targetOptions: TargetOptions,
logger: logging.LoggerApi
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import {
BuilderContext,
BuilderHandlerFn,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export function normalizeOptions(
tree: Tree,
options: AddSchema
): NormalizedSchema {
// TODO: [] move this check to generator
const projectConfig = readProjectConfiguration(tree, options.project);
const { build } = projectConfig.targets;

Expand Down
1 change: 1 addition & 0 deletions packages/nx-release/src/lib/wrap-plugin.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { mocked } from 'jest-mock';
import { Commit } from 'semantic-release';
import { getPathCommitHashes } from './utils/git';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
import { ExecutorContext } from '@nrwl/devkit';
import { BuildExecutorSchema } from './schema';

const options: BuildExecutorSchema = {};

describe('Build Executor', () => {
let context: ExecutorContext;

it('Can run', async () => {
// const output = await buildExecutor(options, context);

Expand Down
2 changes: 1 addition & 1 deletion packages/nx-vscode-extension/src/executors/build/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export async function buildExecutor(
options: BuildExecutorSchema,
context: ExecutorContext
) {
const { outputPath, ..._rest } = options;
const { outputPath } = options;

const command = `tsc -p tsconfig.app.json`.trim();

Expand Down

0 comments on commit 8ba1d19

Please sign in to comment.