Skip to content

Commit

Permalink
Update npm ci to be npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehb committed Jul 11, 2024
1 parent 7794275 commit 7b8cef4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Frontend/library/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Frontend/library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5",
"version": "0.1.2",
"version": "0.1.3",
"description": "Frontend library for Unreal Engine 5.5 Pixel Streaming",
"main": "dist/lib-pixelstreamingfrontend.js",
"module": "dist/lib-pixelstreamingfrontend.esm.js",
Expand All @@ -9,8 +9,8 @@
"scripts": {
"compile": "tsc --build --clean && tsc",
"build": "webpack --config webpack.prod.js",
"build-all": "cd ../../Common && npm ci && npm run build && cd ../Frontend/library && npm link ../../Common && webpack --config webpack.prod.js",
"build-dev": "cd ../../Common && npm ci && npm run build && cd ../Frontend/library && npm link ../../Common && webpack --config webpack.dev.js",
"build-all": "cd ../../Common && npm install && npm run build && cd ../Frontend/library && npm link ../../Common && webpack --config webpack.prod.js",
"build-dev": "cd ../../Common && npm install && npm run build && cd ../Frontend/library && npm link ../../Common && webpack --config webpack.dev.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --detectOpenHandles --coverage=true",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
Expand Down

0 comments on commit 7b8cef4

Please sign in to comment.