Skip to content

Commit

Permalink
make into a quarto project
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Nov 8, 2024
1 parent 05630a4 commit 501db0f
Show file tree
Hide file tree
Showing 25 changed files with 67 additions and 659 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/publish.yaml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/render.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
on:
push:
branches: main

name: render

jobs:
render:
runs-on: ubuntu-latest

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_REMOTES_NO_ERRORS_FROM_WARNINGS: false

steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- uses: quarto-dev/quarto-actions/setup@v2

- name: Cache results
uses: actions/cache@v2
with:
path: |
_book
_freeze
key: book-render-${{ hashFiles('**/*qmd') }}
restore-keys: book-render-

- name: Render
run: quarto render

- name: Deploy to GitHub pages
if: github.event_name != 'pull_request'
uses: JamesIves/[email protected]
with:
clean: false
branch: gh-pages
folder: _book
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ _bookdown_files
_targets.R
_targets/
targets-manual.Rmd

/.quarto/
54 changes: 0 additions & 54 deletions DESCRIPTION

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
YEAR: 2020
YEAR: 2024
COPYRIGHT HOLDER: Eli Lilly and Company
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright (c) 2020 Eli Lilly and Company
Copyright (c) 2024 Eli Lilly and Company

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 0 additions & 3 deletions NEWS.md

This file was deleted.

10 changes: 0 additions & 10 deletions R/empty.R

This file was deleted.

13 changes: 0 additions & 13 deletions _bookdown.yml

This file was deleted.

17 changes: 0 additions & 17 deletions _output.yml

This file was deleted.

22 changes: 22 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
project:
type: book

book:
title: "The {targets} R package design specification"
author: "Will Landau"
site-url: https://books.ropensci.org/targets-design/
repo-url: https://github.com/ropensci-books/targets-design/
repo-branch: main
repo-actions: [edit]
sharing: [twitter, facebook, linkedin]
page-footer: "How to get help: <https://books.ropensci.org/targets/help.html><br>Copyright 2024, Eli Lilly and Company"
chapters:
- index.qmd
- data.qmd
- classes.qmd
- composition.qmd
- orchestration.qmd

format:
html:
theme: cosmo
File renamed without changes.
133 changes: 0 additions & 133 deletions codemeta.json

This file was deleted.

5 changes: 3 additions & 2 deletions composition.Rmd → composition.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ Command | ✓ | ✓ | ✓ | ✓ | ✓ |
Settings | ✓ | ✓ | ✓ | ✓ | ✓ |
Value | ✓ | ✓ | ✓ | ✓ | ✓ |
Metrics | ✓ | ✓ | ✓ | | |
Store | ✓ | ✓ | ✓ | | |
Store | ✓ | ✓ | ✓ | | ✓ |
File | ✓ | ✓ | ✓ | | |
Subpipeline | ✓ | ✓ | ✓ | | |
Junction | | ✓ | | | ✓ |
Cue | ✓ | ✓ | ✓ | | |
Cue | ✓ | ✓ | ✓ | | |
Patternview | | | | | ✓ |

The class inheritance hierarchy of targets is below, and the [orchestration chapter](#orchestration) explains why the package is designed this way.
Expand Down
File renamed without changes.
3 changes: 0 additions & 3 deletions footer.html

This file was deleted.

9 changes: 0 additions & 9 deletions google_analytics.html

This file was deleted.

File renamed without changes.
19 changes: 0 additions & 19 deletions inst/CITATION

This file was deleted.

Loading

0 comments on commit 501db0f

Please sign in to comment.