Skip to content
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
12 changes: 12 additions & 0 deletions cloud/dev-server/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM node:14

WORKDIR /usr/src/app

COPY package.json ./

RUN npm install

COPY ./lib ./lib

EXPOSE 3333
CMD [ "node", "lib/server.js" ]
10 changes: 10 additions & 0 deletions common/changes/@anticrm/core/try-publish_2021-08-04-17-31.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@anticrm/core",
"comment": "Minor changes for publish",
"type": "patch"
}
],
"packageName": "@anticrm/core"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@anticrm/dev-server",
"comment": "Minor changes for publish",
"type": "patch"
}
],
"packageName": "@anticrm/dev-server"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@anticrm/dev-storage",
"comment": "Minor changes for publish",
"type": "patch"
}
],
"packageName": "@anticrm/dev-storage"
}
10 changes: 10 additions & 0 deletions common/changes/@anticrm/platform/try-publish_2021-08-04-17-31.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@anticrm/platform",
"comment": "Minor changes for publish",
"type": "patch"
}
],
"packageName": "@anticrm/platform"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@anticrm/server-ws",
"comment": "Minor changes for publish",
"type": "patch"
}
],
"packageName": "@anticrm/server-ws"
}
5 changes: 1 addition & 4 deletions dev/server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,4 @@
// limitations under the License.
//

import { start } from './server'

// eslint-disable-next-line @typescript-eslint/no-floating-promises
start(3333)
export { start } from './server'
2 changes: 0 additions & 2 deletions dev/storage/src/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ class DevStorage implements ServerStorage {

/**
* @public
* @param handler -
* @returns
*/
export async function createStorage (): Promise<ServerStorage> {
const txes = txJson as unknown as Tx[]
Expand Down
3 changes: 3 additions & 0 deletions packages/core/src/classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

import type { IntlString, Asset, Resource } from '@anticrm/platform'

/**
* @public
*/
export type Ref<T extends Doc> = string & { __ref: T }
export type PrimitiveType = number | string | boolean | undefined | Ref<Doc>
export type Timestamp = number
Expand Down
6 changes: 1 addition & 5 deletions packages/platform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@
"license": "EPL-2.0",
"scripts": {
"build": "heft build",
"build:docs": "api-extractor run --local",
"test": "jest",
"lint": "ts-standard src",
"lint:fix": "eslint --fix ./src",
"format": "prettier --write 'src/**/*.{ts*,js*,yml}' && ts-standard --fix src"
"lint:fix": "eslint --fix ./src"
},
"devDependencies": {
"@anticrm/platform-rig":"~0.6.0",
Expand Down
6 changes: 3 additions & 3 deletions rush.json
Original file line number Diff line number Diff line change
Expand Up @@ -290,19 +290,19 @@
* your PR branch, and in this situation "rush change" will also automatically invoke "git fetch"
* to retrieve the latest activity for the remote master branch.
*/
// "url": "https://github.com/microsoft/rush-example",
"url": "https://github.com/hcengineering/anticrm",

/**
* The default branch name. This tells "rush change" which remote branch to compare against.
* The default value is "master"
*/
// "defaultBranch": "master",
"defaultBranch": "main",

/**
* The default remote. This tells "rush change" which remote to compare against if the remote URL is
* not set or if a remote matching the provided remote URL is not found.
*/
// "defaultRemote": "origin"
"defaultRemote": "origin"
},

/**
Expand Down
6 changes: 1 addition & 5 deletions server/ws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@
"license": "EPL-2.0",
"scripts": {
"build": "heft build",
"build:docs": "api-extractor run --local",
"test": "jest",
"lint": "ts-standard src",
"lint:fix": "eslint --fix ./src",
"format": "prettier --write 'src/**/*.{ts*,js*,yml}' && ts-standard --fix src"
"lint:fix": "eslint --fix ./src"
},
"devDependencies": {
"@anticrm/platform-rig":"~0.6.0",
Expand Down