Skip to content

Commit a280a77

Browse files
fcollonvalbrichet
andauthored
Add query parameters to the docs link (#13)
* Add query parameters to the docs link * Prettier --------- Co-authored-by: Nicolas Brichet <[email protected]>
1 parent 98d0f0f commit a280a77

File tree

2 files changed

+183
-183
lines changed

2 files changed

+183
-183
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A jupyterlite extension to automate cloning of a github repository.
66

77
## Docs
88

9-
https://litegitpuller.readthedocs.io/en/latest/index.html
9+
See [https://litegitpuller.readthedocs.io/en/latest/index.html](https://litegitpuller.readthedocs.io/en/latest/index.html?repo=https%3A%2F%2Fgithub.com%2Fbrichet%2Ftesting-repo&urlpath=tree%2Ftesting-repo%2Fnotebooks%2Fsimple.ipynb&branch=main)
1010

1111
## Requirements
1212

package.json

Lines changed: 182 additions & 182 deletions
Original file line numberDiff line numberDiff line change
@@ -1,190 +1,190 @@
11
{
2-
"name": "@jupyterlite/litegitpuller",
3-
"version": "0.1.0",
4-
"description": "A jupyterlite extension to automate cloning of a github repository.",
5-
"keywords": [
6-
"jupyter",
7-
"jupyterlab",
8-
"jupyterlab-extension"
2+
"name": "@jupyterlite/litegitpuller",
3+
"version": "0.1.0",
4+
"description": "A jupyterlite extension to automate cloning of a github repository.",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension"
9+
],
10+
"homepage": "https://github.com/jupyterlite/litegitpuller",
11+
"bugs": {
12+
"url": "https://github.com/jupyterlite/litegitpuller/issues"
13+
},
14+
"license": "BSD-3-Clause",
15+
"author": {
16+
"name": "Jupyter Development Team",
17+
"email": "[email protected]"
18+
},
19+
"files": [
20+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
21+
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
22+
],
23+
"main": "lib/index.js",
24+
"types": "lib/index.d.ts",
25+
"style": "style/index.css",
26+
"repository": {
27+
"type": "git",
28+
"url": "https://github.com/jupyterlite/litegitpuller.git"
29+
},
30+
"scripts": {
31+
"build": "jlpm build:lib && jlpm build:labextension:dev",
32+
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
33+
"build:labextension": "jupyter labextension build .",
34+
"build:labextension:dev": "jupyter labextension build --development True .",
35+
"build:lib": "tsc --sourceMap",
36+
"build:lib:prod": "tsc",
37+
"clean": "jlpm clean:lib",
38+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
39+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
40+
"clean:labextension": "rimraf litegitpuller/labextension litegitpuller/_version.py",
41+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
42+
"eslint": "jlpm eslint:check --fix",
43+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
44+
"install:extension": "jlpm build",
45+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
46+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
47+
"prettier": "jlpm prettier:base --write --list-different",
48+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
49+
"prettier:check": "jlpm prettier:base --check",
50+
"stylelint": "jlpm stylelint:check --fix",
51+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
52+
"test": "jest --coverage",
53+
"watch": "run-p watch:src watch:labextension",
54+
"watch:src": "tsc -w",
55+
"watch:labextension": "jupyter labextension watch ."
56+
},
57+
"dependencies": {
58+
"@jupyterlab/application": "^3.1.0",
59+
"@jupyterlab/coreutils": "^5.1.0",
60+
"@jupyterlab/filebrowser": "^3.1.0",
61+
"@jupyterlab/services": "^6.1.0"
62+
},
63+
"devDependencies": {
64+
"@babel/core": "^7.0.0",
65+
"@babel/preset-env": "^7.0.0",
66+
"@jupyterlab/builder": "^3.1.0",
67+
"@jupyterlab/testutils": "^3.0.0",
68+
"@types/jest": "^26.0.0",
69+
"@typescript-eslint/eslint-plugin": "^4.8.1",
70+
"@typescript-eslint/parser": "^4.8.1",
71+
"eslint": "^7.14.0",
72+
"eslint-config-prettier": "^6.15.0",
73+
"eslint-plugin-prettier": "^3.1.4",
74+
"jest": "^26.0.0",
75+
"npm-run-all": "^4.1.5",
76+
"prettier": "^2.1.1",
77+
"rimraf": "^3.0.2",
78+
"stylelint": "^14.3.0",
79+
"stylelint-config-prettier": "^9.0.4",
80+
"stylelint-config-recommended": "^6.0.0",
81+
"stylelint-config-standard": "~24.0.0",
82+
"stylelint-prettier": "^2.0.0",
83+
"typescript": "~4.1.3",
84+
"ts-jest": "^26.0.0"
85+
},
86+
"resolutions": {
87+
"@jupyterlab/application": "~3.5.3",
88+
"@jupyterlab/coreutils": "~5.5.3",
89+
"@jupyterlab/docprovider": "~3.5.3",
90+
"@jupyterlab/docregistry": "~3.5.3",
91+
"@jupyterlab/filebrowser": "~3.5.3",
92+
"@jupyterlab/rendermime-interfaces": "~3.5.3",
93+
"@jupyterlab/services": "~6.5.3",
94+
"@lumino/coreutils": "^1.11.0",
95+
"@lumino/widgets": "^1.37.2"
96+
},
97+
"sideEffects": [
98+
"style/*.css",
99+
"style/index.js"
100+
],
101+
"styleModule": "style/index.js",
102+
"publishConfig": {
103+
"access": "public"
104+
},
105+
"jupyterlab": {
106+
"extension": true,
107+
"outputDir": "litegitpuller/labextension"
108+
},
109+
"eslintIgnore": [
110+
"node_modules",
111+
"dist",
112+
"coverage",
113+
"**/*.d.ts",
114+
"tests",
115+
"**/__tests__",
116+
"ui-tests"
117+
],
118+
"eslintConfig": {
119+
"extends": [
120+
"eslint:recommended",
121+
"plugin:@typescript-eslint/eslint-recommended",
122+
"plugin:@typescript-eslint/recommended",
123+
"plugin:prettier/recommended"
9124
],
10-
"homepage": "https://github.com/jupyterlite/litegitpuller",
11-
"bugs": {
12-
"url": "https://github.com/jupyterlite/litegitpuller/issues"
125+
"parser": "@typescript-eslint/parser",
126+
"parserOptions": {
127+
"project": "tsconfig.json",
128+
"sourceType": "module"
13129
},
14-
"license": "BSD-3-Clause",
15-
"author": {
16-
"name": "Jupyter Development Team",
17-
"email": "[email protected]"
18-
},
19-
"files": [
20-
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
21-
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
22-
],
23-
"main": "lib/index.js",
24-
"types": "lib/index.d.ts",
25-
"style": "style/index.css",
26-
"repository": {
27-
"type": "git",
28-
"url": "https://github.com/jupyterlite/litegitpuller.git"
29-
},
30-
"scripts": {
31-
"build": "jlpm build:lib && jlpm build:labextension:dev",
32-
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
33-
"build:labextension": "jupyter labextension build .",
34-
"build:labextension:dev": "jupyter labextension build --development True .",
35-
"build:lib": "tsc --sourceMap",
36-
"build:lib:prod": "tsc",
37-
"clean": "jlpm clean:lib",
38-
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
39-
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
40-
"clean:labextension": "rimraf litegitpuller/labextension litegitpuller/_version.py",
41-
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
42-
"eslint": "jlpm eslint:check --fix",
43-
"eslint:check": "eslint . --cache --ext .ts,.tsx",
44-
"install:extension": "jlpm build",
45-
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
46-
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
47-
"prettier": "jlpm prettier:base --write --list-different",
48-
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
49-
"prettier:check": "jlpm prettier:base --check",
50-
"stylelint": "jlpm stylelint:check --fix",
51-
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
52-
"test": "jest --coverage",
53-
"watch": "run-p watch:src watch:labextension",
54-
"watch:src": "tsc -w",
55-
"watch:labextension": "jupyter labextension watch ."
56-
},
57-
"dependencies": {
58-
"@jupyterlab/application": "^3.1.0",
59-
"@jupyterlab/coreutils": "^5.1.0",
60-
"@jupyterlab/filebrowser": "^3.1.0",
61-
"@jupyterlab/services": "^6.1.0"
62-
},
63-
"devDependencies": {
64-
"@babel/core": "^7.0.0",
65-
"@babel/preset-env": "^7.0.0",
66-
"@jupyterlab/builder": "^3.1.0",
67-
"@jupyterlab/testutils": "^3.0.0",
68-
"@types/jest": "^26.0.0",
69-
"@typescript-eslint/eslint-plugin": "^4.8.1",
70-
"@typescript-eslint/parser": "^4.8.1",
71-
"eslint": "^7.14.0",
72-
"eslint-config-prettier": "^6.15.0",
73-
"eslint-plugin-prettier": "^3.1.4",
74-
"jest": "^26.0.0",
75-
"npm-run-all": "^4.1.5",
76-
"prettier": "^2.1.1",
77-
"rimraf": "^3.0.2",
78-
"stylelint": "^14.3.0",
79-
"stylelint-config-prettier": "^9.0.4",
80-
"stylelint-config-recommended": "^6.0.0",
81-
"stylelint-config-standard": "~24.0.0",
82-
"stylelint-prettier": "^2.0.0",
83-
"typescript": "~4.1.3",
84-
"ts-jest": "^26.0.0"
85-
},
86-
"resolutions": {
87-
"@jupyterlab/application": "~3.5.3",
88-
"@jupyterlab/coreutils": "~5.5.3",
89-
"@jupyterlab/docprovider": "~3.5.3",
90-
"@jupyterlab/docregistry": "~3.5.3",
91-
"@jupyterlab/filebrowser": "~3.5.3",
92-
"@jupyterlab/rendermime-interfaces": "~3.5.3",
93-
"@jupyterlab/services": "~6.5.3",
94-
"@lumino/coreutils": "^1.11.0",
95-
"@lumino/widgets": "^1.37.2"
96-
},
97-
"sideEffects": [
98-
"style/*.css",
99-
"style/index.js"
130+
"plugins": [
131+
"@typescript-eslint"
100132
],
101-
"styleModule": "style/index.js",
102-
"publishConfig": {
103-
"access": "public"
104-
},
105-
"jupyterlab": {
106-
"extension": true,
107-
"outputDir": "litegitpuller/labextension"
108-
},
109-
"eslintIgnore": [
110-
"node_modules",
111-
"dist",
112-
"coverage",
113-
"**/*.d.ts",
114-
"tests",
115-
"**/__tests__",
116-
"ui-tests"
117-
],
118-
"eslintConfig": {
119-
"extends": [
120-
"eslint:recommended",
121-
"plugin:@typescript-eslint/eslint-recommended",
122-
"plugin:@typescript-eslint/recommended",
123-
"plugin:prettier/recommended"
124-
],
125-
"parser": "@typescript-eslint/parser",
126-
"parserOptions": {
127-
"project": "tsconfig.json",
128-
"sourceType": "module"
129-
},
130-
"plugins": [
131-
"@typescript-eslint"
132-
],
133-
"rules": {
134-
"@typescript-eslint/naming-convention": [
135-
"error",
136-
{
137-
"selector": "interface",
138-
"format": [
139-
"PascalCase"
140-
],
141-
"custom": {
142-
"regex": "^I[A-Z]",
143-
"match": true
144-
}
145-
}
146-
],
147-
"@typescript-eslint/no-unused-vars": [
148-
"warn",
149-
{
150-
"args": "none"
151-
}
152-
],
153-
"@typescript-eslint/no-explicit-any": "off",
154-
"@typescript-eslint/no-namespace": "off",
155-
"@typescript-eslint/no-use-before-define": "off",
156-
"@typescript-eslint/quotes": [
157-
"error",
158-
"single",
159-
{
160-
"avoidEscape": true,
161-
"allowTemplateLiterals": false
162-
}
163-
],
164-
"curly": [
165-
"error",
166-
"all"
167-
],
168-
"eqeqeq": "error",
169-
"prefer-arrow-callback": "error"
133+
"rules": {
134+
"@typescript-eslint/naming-convention": [
135+
"error",
136+
{
137+
"selector": "interface",
138+
"format": [
139+
"PascalCase"
140+
],
141+
"custom": {
142+
"regex": "^I[A-Z]",
143+
"match": true
144+
}
170145
}
171-
},
172-
"prettier": {
173-
"singleQuote": true,
174-
"trailingComma": "none",
175-
"arrowParens": "avoid",
176-
"endOfLine": "auto"
177-
},
178-
"stylelint": {
179-
"extends": [
180-
"stylelint-config-recommended",
181-
"stylelint-config-standard",
182-
"stylelint-prettier/recommended"
183-
],
184-
"rules": {
185-
"property-no-vendor-prefix": null,
186-
"selector-no-vendor-prefix": null,
187-
"value-no-vendor-prefix": null
146+
],
147+
"@typescript-eslint/no-unused-vars": [
148+
"warn",
149+
{
150+
"args": "none"
188151
}
152+
],
153+
"@typescript-eslint/no-explicit-any": "off",
154+
"@typescript-eslint/no-namespace": "off",
155+
"@typescript-eslint/no-use-before-define": "off",
156+
"@typescript-eslint/quotes": [
157+
"error",
158+
"single",
159+
{
160+
"avoidEscape": true,
161+
"allowTemplateLiterals": false
162+
}
163+
],
164+
"curly": [
165+
"error",
166+
"all"
167+
],
168+
"eqeqeq": "error",
169+
"prefer-arrow-callback": "error"
170+
}
171+
},
172+
"prettier": {
173+
"singleQuote": true,
174+
"trailingComma": "none",
175+
"arrowParens": "avoid",
176+
"endOfLine": "auto"
177+
},
178+
"stylelint": {
179+
"extends": [
180+
"stylelint-config-recommended",
181+
"stylelint-config-standard",
182+
"stylelint-prettier/recommended"
183+
],
184+
"rules": {
185+
"property-no-vendor-prefix": null,
186+
"selector-no-vendor-prefix": null,
187+
"value-no-vendor-prefix": null
189188
}
189+
}
190190
}

0 commit comments

Comments
 (0)