Skip to content

Commit

Permalink
build(ci): Switch pnpm with npm due to issue with TS and SSR
Browse files Browse the repository at this point in the history
This commit replaces `pnpm` with `npm` in the Github Actions workflows.
  • Loading branch information
pavankjadda committed Dec 7, 2023
1 parent a5b0d67 commit 6ea27f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/ngx-cookie-service-ssr/src/lib/ssr-cookie.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Request} from 'express';
import {Inject, Injectable, InjectionToken, Optional, PLATFORM_ID} from '@angular/core';
import {DOCUMENT, isPlatformBrowser} from '@angular/common';
import { Request } from 'express';
import { Inject, Injectable, InjectionToken, Optional, PLATFORM_ID } from '@angular/core';
import { DOCUMENT, isPlatformBrowser } from '@angular/common';

// Define the `Request` token
export const REQUEST = new InjectionToken<Request>('REQUEST');
Expand Down

0 comments on commit 6ea27f6

Please sign in to comment.