Skip to content

Commit

Permalink
fix dat build
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonad committed Dec 3, 2020
1 parent ea5df1c commit 2e56a65
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitpod.yml
@@ -1,5 +1,5 @@
tasks:
- init: cd demo-server && npm i && npm run dist-all
- init: npm i
command: cd demo-server && npm run start
ports:
- port: 8080
Expand Down
2 changes: 1 addition & 1 deletion Procfile
@@ -1 +1 @@
web: cd demo-server && npm i && npm run dist-all && npm start
web: npm start
36 changes: 36 additions & 0 deletions package.json
@@ -0,0 +1,36 @@
{
"name": "yjs-demos",
"version": "0.0.0",
"private": true,
"description": "You can ignore this package.json. We only need it for deploying the demos to our CDN.",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/dmonad"
},
"scripts": {
"clean": "rm -rf */dist ../*/node_modules",
"start": "cd demo-server && npm start",
"dist:pm-dat": "cd prosemirror-dat && npm update && npm run dist",
"dist:cm": "cd codemirror && npm i && npm run dist",
"dist:atlaskit": "cd atlaskit && npm i && npm run dist",
"dist:pm": "cd prosemirror && npm i && npm run dist",
"dist:pm-versions": "cd ../prosemirror-versions && npm i && npm run dist",
"dist:quill": "cd quill && npm i && npm run dist",
"dist:monaco": "cd monaco && npm i && npm run dist",
"dist:tiptap": "cd tiptap && npm i && npm run dist",
"dist-all": "npm run dist:pm-dat && npm run dist:cm && npm run dist:atlaskit && npm run dist:pm && npm run dist:pm-versions && npm run dist:quill && npm run dist:monaco && npm run dist:tiptap",
"lint": "standard",
"postinstall": "npm run dist-all"
},
"author": "Kevin Jahns <kevin.jahns@protonmail.com",
"license": "UNLICENSE",
"standard": {
"ignore": [
"/dist",
"/node_modules"
]
},
"engines": {
"node": "^14.0.0"
}
}

0 comments on commit 2e56a65

Please sign in to comment.