Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update esri-leaflet-vector package and update npm scripts #1694

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/angular.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: src/interface/package-lock.json
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run lint

build:
Expand All @@ -49,7 +49,7 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: src/interface/package-lock.json
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run test:prod

storybook:
Expand All @@ -70,5 +70,5 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: src/interface/package-lock.json
- run: npm ci --legacy-peer-deps
- run: npm ci
- run: npm run build-storybook
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ taggit:
echo "Completed taggit"

install-dependencies-frontend:
cd src/interface && npm install --legacy-peer-deps
cd src/interface && npm install

compile-angular:
cd src/interface && npm run build -- --configuration production --output-path=./dist/out
Expand Down
2 changes: 1 addition & 1 deletion src/interface/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /src/interface
COPY ./package.json ./package-lock.json /src/interface/

# Install angular
RUN npm install --legacy-peer-deps
RUN npm install

# Copy app files
COPY . /src/interface
Expand Down
Loading
Loading