-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SHA256 hashes: jupyterlab-rise-0.41.0.tgz: 361493f4afa44d1a788c15e5845243ca5bbe1721b1a79b607935f6a490726951 jupyterlab_rise-0.41.0-py3-none-any.whl: 8c171b05350f2ee795fec37256a35db9337fcf7781d690fa9d72f7f21690ad62 jupyterlab_rise-0.41.0.tar.gz: 5df52b93dcb4742dd6a5f55247663feb0095ffbaed1d9a8874c7dd238879bb00
- Loading branch information
1 parent
6f3dd32
commit b28cdd4
Showing
8 changed files
with
184 additions
and
165 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"version": "0.40.0", | ||
"version": "0.41.0", | ||
"npmClient": "yarn" | ||
} |
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 |
---|---|---|
@@ -1,165 +1,165 @@ | ||
{ | ||
"name": "jupyterlab-rise-meta", | ||
"version": "0.40.0", | ||
"description": "RISE: \"Live\" Reveal.js JupyterLab Slideshow extension.", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"private": true, | ||
"files": [], | ||
"workspaces": { | ||
"packages": [ | ||
"app", | ||
"ui-tests", | ||
"packages/*" | ||
] | ||
}, | ||
"homepage": "https://github.com/jupyterlab-contrib/rise", | ||
"bugs": { | ||
"url": "https://github.com/jupyterlab-contrib/rise/issues" | ||
"name": "jupyterlab-rise-meta", | ||
"version": "0.41.0", | ||
"description": "RISE: \"Live\" Reveal.js JupyterLab Slideshow extension.", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"private": true, | ||
"files": [], | ||
"workspaces": { | ||
"packages": [ | ||
"app", | ||
"ui-tests", | ||
"packages/*" | ||
] | ||
}, | ||
"homepage": "https://github.com/jupyterlab-contrib/rise", | ||
"bugs": { | ||
"url": "https://github.com/jupyterlab-contrib/rise/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Frederic Collonval", | ||
"email": "[email protected]" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Thierry Parmentelat", | ||
"url": "https://github.com/parmentelat" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Frederic Collonval", | ||
"email": "[email protected]" | ||
{ | ||
"name": "Yiqin Zhang" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jupyterlab-contrib/rise.git" | ||
}, | ||
"scripts": { | ||
"build": "lerna run build", | ||
"build:prod": "lerna run build:prod", | ||
"clean": "lerna run clean", | ||
"eslint": "jlpm eslint:check --fix", | ||
"eslint:check": "eslint . --cache --ext .ts,.tsx", | ||
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint", | ||
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", | ||
"prettier": "jlpm prettier:base --write --list-different", | ||
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "jlpm prettier:base --check", | ||
"stylelint": "jlpm stylelint:check --fix", | ||
"stylelint:check": "stylelint --cache \"packages/*/style/**/*.css\"", | ||
"watch": "run-p watch:lib watch:app", | ||
"watch:app": "lerna exec --stream --scope \"rise-app\" yarn watch", | ||
"watch:lib": "lerna exec --stream --scope \"jupyterlab-rise-application\" --scope \"jupyterlab-rise\" yarn watch" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"eslint": "^8.45.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"lerna": "^7.1.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^3.0.0", | ||
"rimraf": "^5.0.0", | ||
"stylelint": "^15.10.1", | ||
"stylelint-config-recommended": "^13.0.0", | ||
"stylelint-config-standard": "^34.0.0", | ||
"stylelint-prettier": "^4.0.0", | ||
"typescript": "~5.0.4" | ||
}, | ||
"eslintIgnore": [ | ||
"app/build", | ||
"node_modules", | ||
"dist", | ||
"coverage", | ||
"**/*.d.ts", | ||
"tests", | ||
"**/__tests__", | ||
"ui-tests" | ||
], | ||
"eslintConfig": { | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.eslint.json", | ||
"sourceType": "module" | ||
}, | ||
"contributors": [ | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"@typescript-eslint/naming-convention": [ | ||
"error", | ||
{ | ||
"name": "Thierry Parmentelat", | ||
"url": "https://github.com/parmentelat" | ||
}, | ||
"selector": "interface", | ||
"format": [ | ||
"PascalCase" | ||
], | ||
"custom": { | ||
"regex": "^I[A-Z]", | ||
"match": true | ||
} | ||
} | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"name": "Yiqin Zhang" | ||
"args": "none" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jupyterlab-contrib/rise.git" | ||
}, | ||
"scripts": { | ||
"build": "lerna run build", | ||
"build:prod": "lerna run build:prod", | ||
"clean": "lerna run clean", | ||
"eslint": "jlpm eslint:check --fix", | ||
"eslint:check": "eslint . --cache --ext .ts,.tsx", | ||
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint", | ||
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", | ||
"prettier": "jlpm prettier:base --write --list-different", | ||
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "jlpm prettier:base --check", | ||
"stylelint": "jlpm stylelint:check --fix", | ||
"stylelint:check": "stylelint --cache \"packages/*/style/**/*.css\"", | ||
"watch": "run-p watch:lib watch:app", | ||
"watch:app": "lerna exec --stream --scope \"rise-app\" yarn watch", | ||
"watch:lib": "lerna exec --stream --scope \"jupyterlab-rise-application\" --scope \"jupyterlab-rise\" yarn watch" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"eslint": "^8.45.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"lerna": "^7.1.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^3.0.0", | ||
"rimraf": "^5.0.0", | ||
"stylelint": "^15.10.1", | ||
"stylelint-config-recommended": "^13.0.0", | ||
"stylelint-config-standard": "^34.0.0", | ||
"stylelint-prettier": "^4.0.0", | ||
"typescript": "~5.0.4" | ||
}, | ||
"eslintIgnore": [ | ||
"app/build", | ||
"node_modules", | ||
"dist", | ||
"coverage", | ||
"**/*.d.ts", | ||
"tests", | ||
"**/__tests__", | ||
"ui-tests" | ||
], | ||
"eslintConfig": { | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.eslint.json", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"rules": { | ||
"@typescript-eslint/naming-convention": [ | ||
"error", | ||
{ | ||
"selector": "interface", | ||
"format": [ | ||
"PascalCase" | ||
], | ||
"custom": { | ||
"regex": "^I[A-Z]", | ||
"match": true | ||
} | ||
} | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
"warn", | ||
{ | ||
"args": "none" | ||
} | ||
], | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-use-before-define": "off", | ||
"@typescript-eslint/quotes": [ | ||
"error", | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": false | ||
} | ||
], | ||
"curly": [ | ||
"error", | ||
"all" | ||
], | ||
"eqeqeq": "error", | ||
"prefer-arrow-callback": "error" | ||
], | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-namespace": "off", | ||
"@typescript-eslint/no-use-before-define": "off", | ||
"@typescript-eslint/quotes": [ | ||
"error", | ||
"single", | ||
{ | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": false | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"overrides": [ | ||
{ | ||
"files": "package.json", | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
}, | ||
"stylelint": { | ||
"extends": [ | ||
"stylelint-config-recommended", | ||
"stylelint-config-standard", | ||
"stylelint-prettier/recommended" | ||
], | ||
"rules": { | ||
"property-no-vendor-prefix": null, | ||
"selector-class-pattern": null, | ||
"selector-no-vendor-prefix": null, | ||
"value-no-vendor-prefix": null | ||
], | ||
"curly": [ | ||
"error", | ||
"all" | ||
], | ||
"eqeqeq": "error", | ||
"prefer-arrow-callback": "error" | ||
} | ||
}, | ||
"prettier": { | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"overrides": [ | ||
{ | ||
"files": "package.json", | ||
"options": { | ||
"tabWidth": 4 | ||
} | ||
} | ||
] | ||
}, | ||
"stylelint": { | ||
"extends": [ | ||
"stylelint-config-recommended", | ||
"stylelint-config-standard", | ||
"stylelint-prettier/recommended" | ||
], | ||
"rules": { | ||
"property-no-vendor-prefix": null, | ||
"selector-class-pattern": null, | ||
"selector-no-vendor-prefix": null, | ||
"value-no-vendor-prefix": null | ||
} | ||
} | ||
} |
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
Oops, something went wrong.