Skip to content

Commit f0cb600

Browse files
committed
changes after review
1 parent 5d3cf4a commit f0cb600

File tree

3 files changed

+0
-17
lines changed

3 files changed

+0
-17
lines changed

Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# syntax=docker/dockerfile:1
22

3-
# Comments are provided throughout this file to help you get started.
4-
# If you need more help, visit the Dockerfile reference guide at
5-
# https://docs.docker.com/go/dockerfile-reference/
6-
73
ARG NODE_VERSION=20.9.0
84

95
################################################################################
@@ -21,8 +17,6 @@ RUN corepack prepare yarn@4.0.1 --activate
2117
FROM base AS deps
2218

2319
# Download dependencies as a separate step to take advantage of Docker's caching.
24-
# Leverage bind mounts to package.json and yarn.lock to avoid having to copy them
25-
# into this layer.
2620
COPY .yarnrc.yml package.json yarn.lock ./
2721
COPY .yarn .yarn
2822
COPY packages/model/package.json packages/model/package.json

compose.yaml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
# Comments are provided throughout this file to help you get started.
2-
# If you need more help, visit the Docker compose reference guide at
3-
# https://docs.docker.com/go/compose-spec-reference/
4-
5-
# Here the instructions define your application as a service called "server".
6-
# This service is built from the Dockerfile in the current directory.
7-
# You can add other services your application may depend on here, such as a
8-
# database or a cache. For examples, see the Awesome Compose repository:
9-
# https://github.com/docker/awesome-compose
101
services:
112
wsserver:
123
build:

packages/model/src/entities/EditorDocument/EditorDocument.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ describe('EditorDocument', () => {
112112

113113
doc.clear();
114114

115-
console.log(doc.serialized);
116-
117115
expect(doc.serialized.blocks).toHaveLength(0);
118116
});
119117
});

0 commit comments

Comments
 (0)