Skip to content

Commit 58155de

Browse files
committed
Merge branch 'noise/main'
2 parents bc2fa1c + 4be3843 commit 58155de

File tree

8 files changed

+125
-1342
lines changed

8 files changed

+125
-1342
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('../../tools/boyne');
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "Pleasant Mountain",
3+
"url": {
4+
"host": "https://www.pleasantmountain.com",
5+
"pathname": "/mountain-report"
6+
},
7+
"api": {
8+
"host": "https://apim-marketing-001.azure-api.net",
9+
"pathname": "/FeedService/v1/Feed/Facilities/Areas/Lifts/All?resortName=pm"
10+
},
11+
"tags": [
12+
"Maine",
13+
"New England"
14+
],
15+
"ll": [
16+
-70.817528,
17+
44.053791
18+
],
19+
"twitter": "pleasantmtnme",
20+
"opening": "2022-09-02",
21+
"noaa": "GYX/55,73"
22+
}

lib/resorts/shawnee-peak/index.js

-10
This file was deleted.

lib/resorts/shawnee-peak/resort.json

-18
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
[
2+
{
3+
"name": "Li'l Pine Beginner Carpet",
4+
"status": "Open",
5+
"statusIcon": "open",
6+
"comment": null,
7+
"openTime": "09:30",
8+
"closeTime": "20:00",
9+
"nightStatus": "Open",
10+
"type": "Magic Carpet",
11+
"capacity": 0,
12+
"liftIcon": "magic-carpet",
13+
"featureIcons": null,
14+
"skierWaitTime": null,
15+
"scenicWaitTime": null
16+
},
17+
{
18+
"name": "Pine Quad",
19+
"status": "Open",
20+
"statusIcon": "open",
21+
"comment": null,
22+
"openTime": "09:30",
23+
"closeTime": "20:00",
24+
"nightStatus": "Open",
25+
"type": "Chairlift",
26+
"capacity": 4,
27+
"liftIcon": "chairlift-4",
28+
"featureIcons": null,
29+
"skierWaitTime": null,
30+
"scenicWaitTime": null
31+
},
32+
{
33+
"name": "Rabbit Run",
34+
"status": "Open",
35+
"statusIcon": "open",
36+
"comment": null,
37+
"openTime": "09:30",
38+
"closeTime": "20:00",
39+
"nightStatus": "Open",
40+
"type": "Chairlift",
41+
"capacity": 3,
42+
"liftIcon": "chairlift-3",
43+
"featureIcons": null,
44+
"skierWaitTime": null,
45+
"scenicWaitTime": null
46+
},
47+
{
48+
"name": "Snow Pine Carpet",
49+
"status": "Closed",
50+
"statusIcon": "closed",
51+
"comment": null,
52+
"openTime": "",
53+
"closeTime": "",
54+
"nightStatus": "Closed",
55+
"type": "Magic Carpet",
56+
"capacity": 0,
57+
"liftIcon": "magic-carpet",
58+
"featureIcons": null,
59+
"skierWaitTime": null,
60+
"scenicWaitTime": null
61+
},
62+
{
63+
"name": "Summit Express",
64+
"status": "Open",
65+
"statusIcon": "open",
66+
"comment": null,
67+
"openTime": "09:30",
68+
"closeTime": "20:00",
69+
"nightStatus": "Open",
70+
"type": "Detachable Chairlift",
71+
"capacity": 4,
72+
"liftIcon": "chairlift-4",
73+
"featureIcons": null,
74+
"skierWaitTime": null,
75+
"scenicWaitTime": null
76+
},
77+
{
78+
"name": "Sunnyside Triple",
79+
"status": "Closed",
80+
"statusIcon": "closed",
81+
"comment": null,
82+
"openTime": "",
83+
"closeTime": "",
84+
"nightStatus": "Closed",
85+
"type": "Chairlift",
86+
"capacity": 3,
87+
"liftIcon": "chairlift-3",
88+
"featureIcons": null,
89+
"skierWaitTime": null,
90+
"scenicWaitTime": null
91+
}
92+
]

test/resorts/example/shawnee-peak.html

-1,304
This file was deleted.

test/resorts/pleasant-mountain.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const lifts = require('../lifts');
2+
3+
lifts('pleasant-mountain', 'json', {
4+
"Li'l Pine Beginner Carpet": 'open',
5+
'Pine Quad': 'open',
6+
'Rabbit Run': 'open',
7+
'Snow Pine Carpet': 'closed',
8+
'Summit Express': 'open',
9+
'Sunnyside Triple': 'closed'
10+
});

test/resorts/shawnee-peak.js

-10
This file was deleted.

0 commit comments

Comments
 (0)