-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract out ICollaborativeDrive to
@jupyter/collaborative-drive
(#353)
* Extract out ICollaborativeDrive to @jupyter/collaborativedrive * Rename @jupyter/collaborativedrive to @jupyter/collaborative-drive * Move packages/collaborativedrive -> packages/collaborative-drive * Update collaborative-drive dependencies * Add collaborative-drive as shared package --------- Co-authored-by: Jeremy Tuloup <[email protected]>
- Loading branch information
1 parent
b68d3cd
commit 60e55ea
Showing
14 changed files
with
143 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"name": "@jupyter/collaborative-drive", | ||
"version": "3.0.0-beta.6", | ||
"description": "JupyterLab - Collaborative Drive", | ||
"homepage": "https://github.com/jupyterlab/jupyter-collaboration", | ||
"bugs": { | ||
"url": "https://github.com/jupyterlab/jupyter-collaboration/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jupyterlab/jupyter-collaboration.git" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": "Project Jupyter", | ||
"sideEffects": [ | ||
"style/**/*" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"directories": { | ||
"lib": "lib/" | ||
}, | ||
"files": [ | ||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", | ||
"schema/*.json", | ||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}", | ||
"style/index.js" | ||
], | ||
"scripts": { | ||
"build": "tsc -b", | ||
"build:prod": "jlpm run build", | ||
"build:test": "tsc --build tsconfig.test.json", | ||
"clean": "rimraf lib tsconfig.tsbuildinfo", | ||
"clean:lib": "jlpm run clean:all", | ||
"clean:all": "rimraf lib tsconfig.tsbuildinfo node_modules", | ||
"install:extension": "jlpm run build", | ||
"watch": "tsc -b --watch" | ||
}, | ||
"dependencies": { | ||
"@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3", | ||
"@jupyterlab/services": "^7.2.0", | ||
"@lumino/coreutils": "^2.1.0", | ||
"@lumino/disposable": "^2.1.0" | ||
}, | ||
"devDependencies": { | ||
"rimraf": "^4.1.2", | ||
"typescript": "~5.0.4" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"typedoc": { | ||
"entryPoint": "./src/index.ts", | ||
"displayName": "@jupyter/collaborative-drive", | ||
"tsconfig": "./tsconfig.json" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* ----------------------------------------------------------------------------- | ||
| Copyright (c) Jupyter Development Team. | ||
| Distributed under the terms of the Modified BSD License. | ||
|----------------------------------------------------------------------------*/ | ||
/** | ||
* @packageDocumentation | ||
* @module collaborative-drive | ||
*/ | ||
|
||
export * from './tokens'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"outDir": "lib", | ||
"rootDir": "src" | ||
}, | ||
"include": ["src/*"], | ||
"exclude": ["src/__tests__/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters