Skip to content

Commit

Permalink
fix(angular): update broken imports in ng-packagr executors (#26319)
Browse files Browse the repository at this point in the history
<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

## Current Behavior
<!-- This is the behavior we have today -->

## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->

## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #26235
  • Loading branch information
leosvelperez authored Jun 3, 2024
1 parent d010267 commit 1ea0589
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* - Use our own options interface to add support for tailwindConfig.
*/

import * as findCacheDirectory from 'find-cache-dir';
import findCacheDirectory from 'find-cache-dir';
import { InjectionToken, Provider, ValueProvider } from 'injection-js';
import { NgPackagrOptions as NgPackagrOptionsBase } from 'ng-packagr/lib/ng-package/options.di';
import { tmpdir } from 'os';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
import * as log from 'ng-packagr/lib/utils/log';
import { dirname, extname, join } from 'path';
import autoprefixer from 'autoprefixer';
import * as postcssUrl from 'postcss-url';
import postcssUrl from 'postcss-url';
import { pathToFileURL } from 'node:url';
import {
getTailwindPostCssPlugin,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* - Use our own options interface to add support for tailwindConfig.
*/

import * as findCacheDirectory from 'find-cache-dir';
import findCacheDirectory from 'find-cache-dir';
import { InjectionToken, Provider, ValueProvider } from 'injection-js';
import { NgPackagrOptions as NgPackagrOptionsBase } from 'ng-packagr/lib/ng-package/options.di';
import { tmpdir } from 'os';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
import * as log from 'ng-packagr/lib/utils/log';
import { dirname, extname, join } from 'path';
import autoprefixer from 'autoprefixer';
import * as postcssUrl from 'postcss-url';
import postcssUrl from 'postcss-url';
import { pathToFileURL } from 'node:url';
import {
getTailwindPostCssPlugin,
Expand Down

0 comments on commit 1ea0589

Please sign in to comment.