-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspago.yaml
53 lines (52 loc) · 2.17 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
48
49
50
51
52
53
workspace:
packageSet:
registry: 50.8.0
extraPackages: {}
# Optional setting to enable the "lockfile". Enabling it will generate
# a `spago.lock` file with a cache of the build plan.
# It's disabled by default when using package sets (because we already
# get a stable build plan from there) and enabled by default when using
# the Registry solver.
# See "The lock file" section for more details.
lock: false
package:
name: dom-simple
dependencies:
- effect: ">=4.0.0 <5.0.0"
- ffi-simple: ">=0.5.1 <0.6.0"
- maybe: ">=6.0.0 <7.0.0"
- nullable: ">=6.0.0 <7.0.0"
- prelude: ">=6.0.1 <7.0.0"
- unsafe-coerce: ">=6.0.0 <7.0.0"
test:
main: Test.Main
dependencies:
- spec: ">=7.6.0 <8.0.0"
- spec-mocha: ">=5.1.0 <6.0.0"
# 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.4.0
# 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: garganscript
githubRepo: purescript-dom-simple