Skip to content

Commit ce4a1e9

Browse files
committed
Merge branch 'main' of github.com:YousefED/typecell-next
2 parents d3bcde4 + 3fc5524 commit ce4a1e9

15 files changed

+3
-5
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ TypeCell is a monorepo containing several packages. In VS Code, it's best to ope
66

77
```
88
blocknote
9-
├── docs - Docs / samples (see https://www.typecell.org/docs/)
109
├── packages
1110
│ ├── common - Utility functions shared across the codebase
1211
│ ├── editor - The main React application

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ TypeCell is organised as a monorepo containing several packages. Directory struc
6767

6868
```
6969
blocknote
70-
├── docs - Docs / samples (see https://www.typecell.org/docs/)
7170
├── packages
7271
│ ├── common - Utility functions shared across the codebase
7372
│ ├── editor - The main React application

packages/editor/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
build
2-
public/_docs
32

43
# Playwright
54
test-results/

packages/editor/copy-docs.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import glob from "glob";
22
import * as path from "path";
3-
const files = glob.sync("**/*.md", { cwd: path.join("..", "..", "docs") });
3+
const files = glob.sync("**/*.md", { cwd: path.join("public", "_docs") });
44

55
console.log(JSON.stringify(files));

packages/editor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"copytypes": "npm run copytypes:self && npm run copytypes:alldeps && npm run copytypes:allexternaldeps",
103103
"start": "npm run copytypes && npm run vite:dev",
104104
"start:local": "npm run copytypes && cross-env VITE_REACT_APP_HOMESERVER_URI=http://localhost:8888 VITE_REACT_APP_HOMESERVER_NAME=test.typecell.org npm run vite:dev",
105-
"copy-docs": "rimraf public/_docs && mkdir public/_docs && node copy-docs.mjs > public/_docs/index.json && cp -rf ../../docs/. public/_docs",
105+
"copy-docs": "node copy-docs.mjs > public/_docs/index.json",
106106
"build": "tsc -v && npm run copytypes && npm run copy-docs",
107107
"build:react": "npm run build && cross-env NODE_OPTIONS=--max_old_space_size=8192 CI=true npm run vite:build",
108108
"build:react:local-preview": "npm run build && cross-env NODE_OPTIONS=--max_old_space_size=8192 VITE_REACT_APP_PREVIEW=true VITE_REACT_APP_HOMESERVER_URI=http://localhost:8888 VITE_REACT_APP_HOMESERVER_NAME=test.typecell.org npm run vite:build",
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
["demos.md","interactive-introduction.md","manual/1. Notebooks and cells.md","manual/2. TypeScript and exports.md","manual/3. Reactive variables.md","manual/4. Inputs.md","manual/5. Imports and NPM.md","manual/6. Collaboration.md","README.md"]
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)