Skip to content

Commit 501db0f

Browse files
committed
make into a quarto project
1 parent 05630a4 commit 501db0f

25 files changed

+67
-659
lines changed

.github/workflows/publish.yaml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/render.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
on:
2+
push:
3+
branches: main
4+
5+
name: render
6+
7+
jobs:
8+
render:
9+
runs-on: ubuntu-latest
10+
11+
env:
12+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
13+
R_REMOTES_NO_ERRORS_FROM_WARNINGS: false
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: r-lib/actions/setup-pandoc@v2
18+
- uses: quarto-dev/quarto-actions/setup@v2
19+
20+
- name: Cache results
21+
uses: actions/cache@v2
22+
with:
23+
path: |
24+
_book
25+
_freeze
26+
key: book-render-${{ hashFiles('**/*qmd') }}
27+
restore-keys: book-render-
28+
29+
- name: Render
30+
run: quarto render
31+
32+
- name: Deploy to GitHub pages
33+
if: github.event_name != 'pull_request'
34+
uses: JamesIves/github-pages-deploy-action@v4.4.1
35+
with:
36+
clean: false
37+
branch: gh-pages
38+
folder: _book

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ _bookdown_files
77
_targets.R
88
_targets/
99
targets-manual.Rmd
10+
11+
/.quarto/

DESCRIPTION

Lines changed: 0 additions & 54 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
YEAR: 2020
1+
YEAR: 2024
22
COPYRIGHT HOLDER: Eli Lilly and Company

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2020 Eli Lilly and Company
3+
Copyright (c) 2024 Eli Lilly and Company
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NEWS.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

R/empty.R

Lines changed: 0 additions & 10 deletions
This file was deleted.

_bookdown.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

_output.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

_quarto.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
project:
2+
type: book
3+
4+
book:
5+
title: "The {targets} R package design specification"
6+
author: "Will Landau"
7+
site-url: https://books.ropensci.org/targets-design/
8+
repo-url: https://github.com/ropensci-books/targets-design/
9+
repo-branch: main
10+
repo-actions: [edit]
11+
sharing: [twitter, facebook, linkedin]
12+
page-footer: "How to get help: <https://books.ropensci.org/targets/help.html><br>Copyright 2024, Eli Lilly and Company"
13+
chapters:
14+
- index.qmd
15+
- data.qmd
16+
- classes.qmd
17+
- composition.qmd
18+
- orchestration.qmd
19+
20+
format:
21+
html:
22+
theme: cosmo

classes.Rmd renamed to classes.qmd

File renamed without changes.

codemeta.json

Lines changed: 0 additions & 133 deletions
This file was deleted.

composition.Rmd renamed to composition.qmd

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ Command | ✓ | ✓ | ✓ | ✓ | ✓ |
2626
Settings | ✓ | ✓ | ✓ | ✓ | ✓ |
2727
Value | ✓ | ✓ | ✓ | ✓ | ✓ |
2828
Metrics | ✓ | ✓ | ✓ | | |
29-
Store | ✓ | ✓ | ✓ | | |
29+
Store | ✓ | ✓ | ✓ | | ✓ |
30+
File | ✓ | ✓ | ✓ | | |
3031
Subpipeline | ✓ | ✓ | ✓ | | |
3132
Junction | | ✓ | | | ✓ |
32-
Cue | ✓ | ✓ | ✓ | | |
33+
Cue | ✓ | ✓ | ✓ | | |
3334
Patternview | | | | | ✓ |
3435

3536
The class inheritance hierarchy of targets is below, and the [orchestration chapter](#orchestration) explains why the package is designed this way.

data.Rmd renamed to data.qmd

File renamed without changes.

footer.html

Lines changed: 0 additions & 3 deletions
This file was deleted.

google_analytics.html

Lines changed: 0 additions & 9 deletions
This file was deleted.

index.Rmd renamed to index.qmd

File renamed without changes.

inst/CITATION

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)