Skip to content

Commit

Permalink
update package names
Browse files Browse the repository at this point in the history
  • Loading branch information
christianmat committed Jan 3, 2024
1 parent 6009392 commit 8a4faca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"ignore": [
"global-storage-server"
]
}
2 changes: 0 additions & 2 deletions apps/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ RUN pnpm ci

# Bundle app source
COPY --chown=node:node . .
RUN pnpm run prisma:generate
RUN mkdir -p /app/certs
RUN openssl genrsa -des3 -passout pass:x -out /app/certs/server.pass.key 2048 && \
openssl rsa -passin pass:x -in /app/certs/server.pass.key -out /app/certs/server.key && \
Expand Down Expand Up @@ -60,7 +59,6 @@ ENV NODE_ENV production

# Running `pnpm ci` removes the existing node_modules directory and passing in --only=production ensures that only the production dependencies are installed. This ensures that the node_modules directory is as optimized as possible
RUN pnpm ci --only=production && pnpm cache clean --force
RUN pnpm run prisma:generate

###################
# PRODUCTION RUN
Expand Down
4 changes: 2 additions & 2 deletions packages/js-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "global-storage",
"name": "central-storage",
"version": "0.0.2",
"description": "globalStorage is a Javascript library with the same API as localStorage that allows you to store state in a centralized location.",
"description": "centralStorage is a Javascript library with the same API as localStorage that allows you to store state in a centralized location.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 8a4faca

Please sign in to comment.