Skip to content

Commit d4c8c74

Browse files
committed
Ignore Manifest.toml and delete dev directory
1 parent f248d85 commit d4c8c74

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ docs/site/
2121
# It records a fixed state of all packages used by the project. As such, it should not be
2222
# committed for packages, but should be committed for applications that require a static
2323
# environment.
24-
Manifest.toml
24+
/Manifest.toml
2525

2626
# Silly macOS stuff
2727
.DS_Store

dev/Project.toml

-2
This file was deleted.

docs/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Manifest.toml

justfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ test_dir := project_dir / "test/"
1212
test_file := test_dir / "runtests.jl"
1313
docs_dir := project_dir / "docs/"
1414
docs_mk_file := docs_dir / "make.jl"
15-
dev_dir := project_dir / "dev/"
1615
bench_dir := project_dir / "perf/"
1716
bench_file := bench_dir / "runbenchmarks.jl"
1817
standard_instantiate_code := """
@@ -47,7 +46,7 @@ bench: (instantiate-dev bench_dir)
4746
[group: 'ci']
4847
fmt:
4948
# https://github.com/invenia/BlueStyle
50-
julia --project={{dev_dir}} -e 'using JuliaFormatter; format("{{project_dir}}", style=BlueStyle())'
49+
julia --project=@JuliaFormatter -e 'using JuliaFormatter; format("{{project_dir}}", style=BlueStyle())'
5150

5251
# Instantiate main project
5352
instantiate:

perf/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Manifest.toml

0 commit comments

Comments
 (0)