1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-13 22:12:50 +02:00

Merge branch 'master' of github.com:laurent22/joplin

This commit is contained in:
Laurent Cozic
2019-09-07 10:47:51 +01:00
4 changed files with 11 additions and 2 deletions

1
.github/FUNDING.yml vendored
View File

@@ -1,4 +1,5 @@
# These are supported funding model platforms # These are supported funding model platforms
patreon: joplin patreon: joplin
github: laurent22
custom: https://joplinapp.org/donate/ custom: https://joplinapp.org/donate/

View File

@@ -12,6 +12,11 @@ labels: 'bug'
Please test using the latest Joplin release to make sure your issue has not already been fixed. Please test using the latest Joplin release to make sure your issue has not already been fixed.
--> -->
<!--
IMPORTANT: If you are reporting a clipper bug, please include an example URL that shows the issue.
Without the URL the issue is likely to be closed.
-->
## Environment ## Environment
Joplin version: Joplin version:

View File

@@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "Joplin Web Clipper [DEV]", "name": "Joplin Web Clipper [DEV]",
"version": "1.0.17", "version": "1.0.18",
"description": "Capture and save web pages and screenshots from your browser to Joplin.", "description": "Capture and save web pages and screenshots from your browser to Joplin.",
"homepage_url": "https://joplinapp.org", "homepage_url": "https://joplinapp.org",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",

View File

@@ -37,7 +37,10 @@ async function main() {
console.info('Building extension...'); console.info('Building extension...');
process.chdir(clipperDir + '/popup'); process.chdir(clipperDir + '/popup');
console.info(await execCommand('npm run build')); // SKIP_PREFLIGHT_CHECK avoids the error "There might be a problem with the project dependency tree." due to eslint 5.12.0 being
// installed by CRA and 6.1.0 by us. It doesn't affect anything though, and the behaviour of the preflight
// check is buggy so we can ignore it.
console.info(await execCommand('SKIP_PREFLIGHT_CHECK=true npm run build'));
const dists = [ const dists = [
{ {