-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspago.yaml
47 lines (45 loc) · 1.81 KB
/
spago.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
workspace:
packageSet:
registry: 50.9.0
extraPackages: {}
package:
name: simple-json-generics
dependencies:
- control: ">=6.0.0 <7.0.0"
- foreign: ">=7.0.0 <8.0.0"
- prelude: ">=6.0.1 <7.0.0"
- simple-json: ">=9.0.0 <10.0.0"
- transformers: ">=6.0.0 <7.0.0"
- typelevel-prelude: ">=7.0.0 <8.0.0"
test:
main: Test.Main
dependencies:
- assert
- spec
# Optional section for configuring the `spago publish` command.
# If you intend to publish your package, this section becomes mandatory.
publish:
# The version of your package. This follows semver rules, but with no
# prereleases - so only major.minor.patch.
version: 0.2.1
# The license for your source, in SPDX format: https://spdx.dev/
license: MPL-2.0
# Optional list of globs to include in the published archive, in
# addition to the list of files that the Registry includes by default:
# https://github.com/purescript/registry-dev/blob/master/SPEC.md#always-included-files
#include:
#- "test/**/*.purs"
# Optional list of globs to exclude from the published archive, in
# addition to the list of files that the Registry includes by default:
# https://github.com/purescript/registry-dev/blob/master/SPEC.md#always-excluded-files
# Note that the Registry will first apply the `include` list, then
# the `exclude` one, as detailed in the specification:
# https://github.com/purescript/registry-dev/blob/master/SPEC.md#33-manifest
exclude:
- "test/graphs/**/*"
# The place where the Registry will fetch the source from.
# This is optional since you might want to release the code without
# publishing to the Registry, which is what this is needed for.
location:
githubOwner: justinwoo
githubRepo: purescript-simple-json-generics