-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from reallyreadit/extension-as-proxy
Readup back on the web
- Loading branch information
Showing
804 changed files
with
39,293 additions
and
39,203 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
"service": "web", | ||
"workspaceFolder": "/web", | ||
"shutdownAction": "none" | ||
} | ||
} |
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,7 +1,10 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = tab | ||
# Unconfigurable Rome/Prettier behavior | ||
insert_final_newline = true | ||
charset = utf-8 | ||
# Configurable Rome/Prettier behavior | ||
max_line_length = 80 | ||
indent_style = tab | ||
trim_trailing_whitespace = true | ||
insert_final_newline = false |
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 |
---|---|---|
|
@@ -2,4 +2,5 @@ | |
/bin | ||
/node_modules | ||
/pkg | ||
/pub | ||
/pub | ||
**/.DS_Store |
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 +1 @@ | ||
14 | ||
14.17 |
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,4 @@ | ||
node_modules | ||
bin | ||
pkg | ||
pub |
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,5 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"useTabs": true, | ||
"singleQuote": true | ||
} |
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,7 @@ | ||
{ | ||
"recommendations": [ | ||
"editorconfig.editorconfig", | ||
"rome.rome", | ||
"esbenp.prettier-vscode" | ||
] | ||
} |
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,19 +1,19 @@ | ||
// Copyright (C) 2022 reallyread.it, inc. | ||
// | ||
// | ||
// This file is part of Readup. | ||
// | ||
// | ||
// Readup is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation. | ||
// | ||
// | ||
// Readup is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. | ||
// | ||
// | ||
// You should have received a copy of the GNU Affero General Public License version 3 along with Foobar. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
const { src, dest } = require('gulp') | ||
const { src, dest } = require('gulp'); | ||
|
||
function buildStaticAssets(params) { | ||
return src(params.src, { base: params.base }) | ||
.pipe(dest(params.dest)) | ||
.on('end', params.onComplete || function () {}); | ||
} | ||
|
||
module.exports = buildStaticAssets; | ||
module.exports = buildStaticAssets; |
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,39 +1,27 @@ | ||
// Copyright (C) 2022 reallyread.it, inc. | ||
// | ||
// | ||
// This file is part of Readup. | ||
// | ||
// | ||
// Readup is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation. | ||
// | ||
// | ||
// Readup is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. | ||
// | ||
// | ||
// You should have received a copy of the GNU Affero General Public License version 3 along with Foobar. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
const | ||
{ src, dest } = require('gulp'), | ||
const { src, dest } = require('gulp'), | ||
mustache = require('gulp-mustache'); | ||
|
||
function buildTemplates(params) { | ||
return src( | ||
params.src, | ||
{ | ||
base: params.base | ||
} | ||
) | ||
.pipe( | ||
mustache( | ||
params.data(params.env), | ||
{ | ||
extension: params.extension | ||
} | ||
) | ||
) | ||
return src(params.src, { | ||
base: params.base, | ||
}) | ||
.pipe( | ||
dest(params.dest) | ||
mustache(params.data(params.env), { | ||
extension: params.extension, | ||
}) | ||
) | ||
.on( | ||
'end', | ||
params.onComplete || function () { } | ||
); | ||
.pipe(dest(params.dest)) | ||
.on('end', params.onComplete || function () {}); | ||
} | ||
|
||
module.exports = buildTemplates; | ||
module.exports = buildTemplates; |
Oops, something went wrong.