Skip to content

Commit

Permalink
fix(cli/fragments/clojurescript): fix issue with the pnpm
Browse files Browse the repository at this point in the history
These settings allow us to use `pnpm` as a package manager.
Without these settings, we will receive several errors from the compiler:
`object-assign`, `scheduler`, `scheduler/tracing` is not available.
  • Loading branch information
just-sultanov committed Sep 22, 2022
1 parent 341d3a6 commit 58de670
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/cli/fragments/fragment-clojurescript/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# You can remove these settings if you use `yarn` or `npm`.
# These settings allow us to use `pnpm` as a package manager.
# Without these settings, we will receive several errors from the compiler:
# `object-assign`, `scheduler`, `scheduler/tracing` is not available.

public-hoist-pattern[]='object-assign'
public-hoist-pattern[]='scheduler'

0 comments on commit 58de670

Please sign in to comment.