Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the CI #11

Merged
merged 3 commits into from
Feb 11, 2022
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
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ include README.md
include RELEASE.md
include pyproject.toml
recursive-include jupyter-config *.json
include conftest.py

include package.json
include install.json
include ts*.json
include yarn.lock

graft search_replace/labextension
graft jupyterlab_search_replace/labextension

# Javascript files
graft src
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
"name": "Frederic Collonval",
"email": "fcollonval@gmail.com"
},
"contributors": [{
"name": "Mariana Meireles"
}],
"contributors": [
{
"name": "Mariana Meireles"
}
],
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const plugin: JupyterFrontEndPlugin<void> = {
const searchReplacePlugin = new SearchReplaceView(searchReplaceModel);

// Test call
searchReplaceModel.getSearchString('strange');
// searchReplaceModel.getSearchString('strange');

searchReplacePlugin.title.caption = 'Search and replace';
searchReplacePlugin.id = 'jp-search-replace';
Expand Down
Loading