schachnovelle 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -4
- package/package.json +3 -1
- package/server/api.js +119 -11
- package/server/index.js +331 -31
- package/ui/Board.js +25 -4
- package/ui/Fen.js +5 -0
- package/ui/Game.js +405 -332
- package/ui/LichessGame.js +11 -0
- package/ui/Side.js +10 -9
- package/ui/Utils.js +3 -2
- package/ui/index.js +72 -8
- package/ui/moves.js +0 -0
- package/views/error.pug +6 -0
- package/views/index.pug +6 -0
- package/views/layout.pug +6 -0
- package/views/welcome.pug +6 -0
- package/yarn-error.log +0 -367
package/ui/Side.js
CHANGED
|
@@ -2,6 +2,10 @@ class Side {
|
|
|
2
2
|
constructor (color) {
|
|
3
3
|
this.pieces = []
|
|
4
4
|
if (color === 'white') {
|
|
5
|
+
//
|
|
6
|
+
//
|
|
7
|
+
//
|
|
8
|
+
this.inCheck = false,
|
|
5
9
|
//
|
|
6
10
|
//
|
|
7
11
|
//
|
|
@@ -120,9 +124,7 @@ class Side {
|
|
|
120
124
|
prefix: 'K',
|
|
121
125
|
type: 'King',
|
|
122
126
|
piece: '♔',
|
|
123
|
-
value: Infinity
|
|
124
|
-
inCheck: false
|
|
125
|
-
// inCheck: true // DEBUG
|
|
127
|
+
value: Infinity
|
|
126
128
|
}
|
|
127
129
|
],
|
|
128
130
|
//
|
|
@@ -159,6 +161,10 @@ class Side {
|
|
|
159
161
|
}
|
|
160
162
|
]
|
|
161
163
|
} else if (color === 'black') {
|
|
164
|
+
//
|
|
165
|
+
//
|
|
166
|
+
//
|
|
167
|
+
this.inCheck = false,
|
|
162
168
|
//
|
|
163
169
|
//
|
|
164
170
|
//
|
|
@@ -278,8 +284,7 @@ class Side {
|
|
|
278
284
|
prefix: 'K',
|
|
279
285
|
type: 'King',
|
|
280
286
|
piece: '♚',
|
|
281
|
-
value: Infinity
|
|
282
|
-
inCheck: false
|
|
287
|
+
value: Infinity
|
|
283
288
|
}
|
|
284
289
|
],
|
|
285
290
|
//
|
|
@@ -321,10 +326,6 @@ class Side {
|
|
|
321
326
|
getPieces () {
|
|
322
327
|
return this.pieces
|
|
323
328
|
}
|
|
324
|
-
|
|
325
|
-
setInCheck (val) {
|
|
326
|
-
this.pieces.find((piece) => { return piece.type === 'King' }).inCheck = val
|
|
327
|
-
}
|
|
328
329
|
}
|
|
329
330
|
|
|
330
331
|
module.exports = Side
|
package/ui/Utils.js
CHANGED
package/ui/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
const spacing =
|
|
1
|
+
const spacing = 1
|
|
2
2
|
const { Select } = require('enquirer')
|
|
3
3
|
|
|
4
|
+
const { spawn } = require('child_process')
|
|
5
|
+
|
|
4
6
|
const Game = require('./Game')
|
|
5
7
|
const Printer = require('./Printer')
|
|
6
8
|
|
|
@@ -9,7 +11,7 @@ const printer = new Printer(spacing)
|
|
|
9
11
|
/**
|
|
10
12
|
* Welcome to Schachnovelle
|
|
11
13
|
*/
|
|
12
|
-
|
|
14
|
+
exports.welcomeMessage = () => {
|
|
13
15
|
printer.addSpace('y')
|
|
14
16
|
printer.printLine(printer.addSpaceBefore('S . C . V . E'))
|
|
15
17
|
printer.printLine(printer.addSpaceBefore(' C A H O E L '))
|
|
@@ -17,16 +19,47 @@ const welcomeMessage = () => {
|
|
|
17
19
|
printer.addSpace('y')
|
|
18
20
|
printer.printLine(printer.addSpaceBefore(' >>Um Gottes Willen! Nicht!<<'))
|
|
19
21
|
printer.addSpace('y')
|
|
22
|
+
printer.printLine(printer.addSpaceBefore(' Public Service Announcement '))
|
|
23
|
+
printer.printLine(printer.addSpaceBefore(' I run best on a white terminal '))
|
|
24
|
+
printer.addSpace('y')
|
|
20
25
|
}
|
|
21
26
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
exports.
|
|
26
|
-
|
|
27
|
+
//
|
|
28
|
+
//
|
|
29
|
+
// Spawn a server
|
|
30
|
+
exports.spawnServer = () => {
|
|
31
|
+
const server = spawn("node", ["./server/index.js"]);
|
|
27
32
|
|
|
28
|
-
|
|
33
|
+
server.stdout.on('data', (data) => {
|
|
34
|
+
const responseCode = data.toString()
|
|
35
|
+
|
|
36
|
+
if (responseCode === 'streamReady') {
|
|
37
|
+
printer.clearView()
|
|
38
|
+
|
|
39
|
+
this.welcomeMessage()
|
|
40
|
+
printer.addSpace('y')
|
|
41
|
+
printer.printLine(printer.addSpaceBefore(' Welcome'))
|
|
42
|
+
printer.addSpace('y')
|
|
43
|
+
|
|
44
|
+
setTimeout(() => {
|
|
45
|
+
this.localGame()
|
|
46
|
+
})
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
server.stderr.on('data', (data) => {
|
|
51
|
+
console.error(data.toString())
|
|
52
|
+
});
|
|
29
53
|
|
|
54
|
+
server.on('close', (code) => {
|
|
55
|
+
// printer.clearView()
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
//
|
|
60
|
+
//
|
|
61
|
+
// Just play a local game
|
|
62
|
+
exports.localGame = () => {
|
|
30
63
|
let choices = {}
|
|
31
64
|
|
|
32
65
|
const color = new Select({
|
|
@@ -52,3 +85,34 @@ exports.init = () => {
|
|
|
52
85
|
.catch(console.error)
|
|
53
86
|
}
|
|
54
87
|
|
|
88
|
+
//
|
|
89
|
+
//
|
|
90
|
+
// INIT
|
|
91
|
+
exports.init = () => {
|
|
92
|
+
//
|
|
93
|
+
//
|
|
94
|
+
// Don't be shy, say hello to that person!
|
|
95
|
+
this.welcomeMessage()
|
|
96
|
+
|
|
97
|
+
this.localGame()
|
|
98
|
+
|
|
99
|
+
// const what = new Select({
|
|
100
|
+
// name: 'todo',
|
|
101
|
+
// message: 'How do you want to play?',
|
|
102
|
+
// choices: ['local', 'on lichess (beta)']
|
|
103
|
+
// })
|
|
104
|
+
|
|
105
|
+
// what.run()
|
|
106
|
+
// .then((answer) => {
|
|
107
|
+
// printer.addSpace('y')
|
|
108
|
+
|
|
109
|
+
// if (answer === 'local') {
|
|
110
|
+
// } else {
|
|
111
|
+
// this.spawnServer()
|
|
112
|
+
|
|
113
|
+
// printer.addSpace('y')
|
|
114
|
+
// printer.printLine(printer.addSpaceBefore(' Log in with Lichess to begin'))
|
|
115
|
+
// printer.addSpace('y')
|
|
116
|
+
// }
|
|
117
|
+
// })
|
|
118
|
+
}
|
package/ui/moves.js
ADDED
|
File without changes
|
package/views/error.pug
ADDED
package/views/index.pug
ADDED
package/views/layout.pug
ADDED
package/yarn-error.log
DELETED
|
@@ -1,367 +0,0 @@
|
|
|
1
|
-
Arguments:
|
|
2
|
-
/Users/manus/.nvm/versions/node/v10.17.0/bin/node /Users/manus/.yarn/bin/yarn.js remove request
|
|
3
|
-
|
|
4
|
-
PATH:
|
|
5
|
-
/Users/manus/.shopify-app-cli/bin/user:/usr/local/opt/mysql-client/bin:/usr/local/opt/php@7.3/sbin:/usr/local/opt/php@7.3/bin:/Users/manus/.nvm/versions/node/v10.17.0/bin:/usr/local/bin/font-convert:/usr/local/apache-maven-3.6.0/bin:/Users/manus/bin:usr/local/bin:~/.composer/vendor/bin:/usr/local/php5/bin:/Users/manus/.yarn/bin:/Users/manus/.config/yarn/global/node_modules/.bin:/usr/local/bin/fontforge:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/Users/manus/Library/Android/sdk/platform-tools:/Users/manus/Library/Android/sdk/tools:/usr/local/MacGPG2/bin:/opt/X11/bin
|
|
6
|
-
|
|
7
|
-
Yarn version:
|
|
8
|
-
1.5.1
|
|
9
|
-
|
|
10
|
-
Node version:
|
|
11
|
-
10.17.0
|
|
12
|
-
|
|
13
|
-
Platform:
|
|
14
|
-
darwin x64
|
|
15
|
-
|
|
16
|
-
npm manifest:
|
|
17
|
-
{
|
|
18
|
-
"name": "offlinechess",
|
|
19
|
-
"version": "1.0.0-beta-0",
|
|
20
|
-
"description": "Chess to play on the command line",
|
|
21
|
-
"main": "index.js",
|
|
22
|
-
"author": "Manus <manusnijhoff@gmail.com>",
|
|
23
|
-
"license": "MIT",
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"enquirer": "^2.3.5",
|
|
26
|
-
"express": "^4.17.1"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
yarn manifest:
|
|
31
|
-
No manifest
|
|
32
|
-
|
|
33
|
-
Lockfile:
|
|
34
|
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
35
|
-
# yarn lockfile v1
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
accepts@~1.3.7:
|
|
39
|
-
version "1.3.7"
|
|
40
|
-
resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
|
|
41
|
-
dependencies:
|
|
42
|
-
mime-types "~2.1.24"
|
|
43
|
-
negotiator "0.6.2"
|
|
44
|
-
|
|
45
|
-
ansi-colors@^3.2.1:
|
|
46
|
-
version "3.2.4"
|
|
47
|
-
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
|
|
48
|
-
|
|
49
|
-
array-flatten@1.1.1:
|
|
50
|
-
version "1.1.1"
|
|
51
|
-
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
|
|
52
|
-
|
|
53
|
-
body-parser@1.19.0:
|
|
54
|
-
version "1.19.0"
|
|
55
|
-
resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
|
|
56
|
-
dependencies:
|
|
57
|
-
bytes "3.1.0"
|
|
58
|
-
content-type "~1.0.4"
|
|
59
|
-
debug "2.6.9"
|
|
60
|
-
depd "~1.1.2"
|
|
61
|
-
http-errors "1.7.2"
|
|
62
|
-
iconv-lite "0.4.24"
|
|
63
|
-
on-finished "~2.3.0"
|
|
64
|
-
qs "6.7.0"
|
|
65
|
-
raw-body "2.4.0"
|
|
66
|
-
type-is "~1.6.17"
|
|
67
|
-
|
|
68
|
-
bytes@3.1.0:
|
|
69
|
-
version "3.1.0"
|
|
70
|
-
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
|
|
71
|
-
|
|
72
|
-
content-disposition@0.5.3:
|
|
73
|
-
version "0.5.3"
|
|
74
|
-
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
|
|
75
|
-
dependencies:
|
|
76
|
-
safe-buffer "5.1.2"
|
|
77
|
-
|
|
78
|
-
content-type@~1.0.4:
|
|
79
|
-
version "1.0.4"
|
|
80
|
-
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
|
|
81
|
-
|
|
82
|
-
cookie-signature@1.0.6:
|
|
83
|
-
version "1.0.6"
|
|
84
|
-
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
|
|
85
|
-
|
|
86
|
-
cookie@0.4.0:
|
|
87
|
-
version "0.4.0"
|
|
88
|
-
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
|
|
89
|
-
|
|
90
|
-
debug@2.6.9:
|
|
91
|
-
version "2.6.9"
|
|
92
|
-
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
|
93
|
-
dependencies:
|
|
94
|
-
ms "2.0.0"
|
|
95
|
-
|
|
96
|
-
depd@~1.1.2:
|
|
97
|
-
version "1.1.2"
|
|
98
|
-
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
|
|
99
|
-
|
|
100
|
-
destroy@~1.0.4:
|
|
101
|
-
version "1.0.4"
|
|
102
|
-
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
|
|
103
|
-
|
|
104
|
-
ee-first@1.1.1:
|
|
105
|
-
version "1.1.1"
|
|
106
|
-
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
|
|
107
|
-
|
|
108
|
-
encodeurl@~1.0.2:
|
|
109
|
-
version "1.0.2"
|
|
110
|
-
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
|
|
111
|
-
|
|
112
|
-
enquirer@^2.3.5:
|
|
113
|
-
version "2.3.5"
|
|
114
|
-
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.5.tgz#3ab2b838df0a9d8ab9e7dff235b0e8712ef92381"
|
|
115
|
-
dependencies:
|
|
116
|
-
ansi-colors "^3.2.1"
|
|
117
|
-
|
|
118
|
-
escape-html@~1.0.3:
|
|
119
|
-
version "1.0.3"
|
|
120
|
-
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
|
|
121
|
-
|
|
122
|
-
etag@~1.8.1:
|
|
123
|
-
version "1.8.1"
|
|
124
|
-
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
|
|
125
|
-
|
|
126
|
-
express@^4.17.1:
|
|
127
|
-
version "4.17.1"
|
|
128
|
-
resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
|
|
129
|
-
dependencies:
|
|
130
|
-
accepts "~1.3.7"
|
|
131
|
-
array-flatten "1.1.1"
|
|
132
|
-
body-parser "1.19.0"
|
|
133
|
-
content-disposition "0.5.3"
|
|
134
|
-
content-type "~1.0.4"
|
|
135
|
-
cookie "0.4.0"
|
|
136
|
-
cookie-signature "1.0.6"
|
|
137
|
-
debug "2.6.9"
|
|
138
|
-
depd "~1.1.2"
|
|
139
|
-
encodeurl "~1.0.2"
|
|
140
|
-
escape-html "~1.0.3"
|
|
141
|
-
etag "~1.8.1"
|
|
142
|
-
finalhandler "~1.1.2"
|
|
143
|
-
fresh "0.5.2"
|
|
144
|
-
merge-descriptors "1.0.1"
|
|
145
|
-
methods "~1.1.2"
|
|
146
|
-
on-finished "~2.3.0"
|
|
147
|
-
parseurl "~1.3.3"
|
|
148
|
-
path-to-regexp "0.1.7"
|
|
149
|
-
proxy-addr "~2.0.5"
|
|
150
|
-
qs "6.7.0"
|
|
151
|
-
range-parser "~1.2.1"
|
|
152
|
-
safe-buffer "5.1.2"
|
|
153
|
-
send "0.17.1"
|
|
154
|
-
serve-static "1.14.1"
|
|
155
|
-
setprototypeof "1.1.1"
|
|
156
|
-
statuses "~1.5.0"
|
|
157
|
-
type-is "~1.6.18"
|
|
158
|
-
utils-merge "1.0.1"
|
|
159
|
-
vary "~1.1.2"
|
|
160
|
-
|
|
161
|
-
finalhandler@~1.1.2:
|
|
162
|
-
version "1.1.2"
|
|
163
|
-
resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
|
|
164
|
-
dependencies:
|
|
165
|
-
debug "2.6.9"
|
|
166
|
-
encodeurl "~1.0.2"
|
|
167
|
-
escape-html "~1.0.3"
|
|
168
|
-
on-finished "~2.3.0"
|
|
169
|
-
parseurl "~1.3.3"
|
|
170
|
-
statuses "~1.5.0"
|
|
171
|
-
unpipe "~1.0.0"
|
|
172
|
-
|
|
173
|
-
forwarded@~0.1.2:
|
|
174
|
-
version "0.1.2"
|
|
175
|
-
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
|
|
176
|
-
|
|
177
|
-
fresh@0.5.2:
|
|
178
|
-
version "0.5.2"
|
|
179
|
-
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
|
|
180
|
-
|
|
181
|
-
http-errors@1.7.2:
|
|
182
|
-
version "1.7.2"
|
|
183
|
-
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
|
|
184
|
-
dependencies:
|
|
185
|
-
depd "~1.1.2"
|
|
186
|
-
inherits "2.0.3"
|
|
187
|
-
setprototypeof "1.1.1"
|
|
188
|
-
statuses ">= 1.5.0 < 2"
|
|
189
|
-
toidentifier "1.0.0"
|
|
190
|
-
|
|
191
|
-
http-errors@~1.7.2:
|
|
192
|
-
version "1.7.3"
|
|
193
|
-
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
|
|
194
|
-
dependencies:
|
|
195
|
-
depd "~1.1.2"
|
|
196
|
-
inherits "2.0.4"
|
|
197
|
-
setprototypeof "1.1.1"
|
|
198
|
-
statuses ">= 1.5.0 < 2"
|
|
199
|
-
toidentifier "1.0.0"
|
|
200
|
-
|
|
201
|
-
iconv-lite@0.4.24:
|
|
202
|
-
version "0.4.24"
|
|
203
|
-
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
|
204
|
-
dependencies:
|
|
205
|
-
safer-buffer ">= 2.1.2 < 3"
|
|
206
|
-
|
|
207
|
-
inherits@2.0.3:
|
|
208
|
-
version "2.0.3"
|
|
209
|
-
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
|
210
|
-
|
|
211
|
-
inherits@2.0.4:
|
|
212
|
-
version "2.0.4"
|
|
213
|
-
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
|
|
214
|
-
|
|
215
|
-
ipaddr.js@1.9.1:
|
|
216
|
-
version "1.9.1"
|
|
217
|
-
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
|
|
218
|
-
|
|
219
|
-
media-typer@0.3.0:
|
|
220
|
-
version "0.3.0"
|
|
221
|
-
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
|
|
222
|
-
|
|
223
|
-
merge-descriptors@1.0.1:
|
|
224
|
-
version "1.0.1"
|
|
225
|
-
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
|
|
226
|
-
|
|
227
|
-
methods@~1.1.2:
|
|
228
|
-
version "1.1.2"
|
|
229
|
-
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
|
|
230
|
-
|
|
231
|
-
mime-db@1.44.0:
|
|
232
|
-
version "1.44.0"
|
|
233
|
-
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
|
|
234
|
-
|
|
235
|
-
mime-types@~2.1.24:
|
|
236
|
-
version "2.1.27"
|
|
237
|
-
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
|
|
238
|
-
dependencies:
|
|
239
|
-
mime-db "1.44.0"
|
|
240
|
-
|
|
241
|
-
mime@1.6.0:
|
|
242
|
-
version "1.6.0"
|
|
243
|
-
resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
|
|
244
|
-
|
|
245
|
-
ms@2.0.0:
|
|
246
|
-
version "2.0.0"
|
|
247
|
-
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
|
|
248
|
-
|
|
249
|
-
ms@2.1.1:
|
|
250
|
-
version "2.1.1"
|
|
251
|
-
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
|
|
252
|
-
|
|
253
|
-
negotiator@0.6.2:
|
|
254
|
-
version "0.6.2"
|
|
255
|
-
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
|
|
256
|
-
|
|
257
|
-
on-finished@~2.3.0:
|
|
258
|
-
version "2.3.0"
|
|
259
|
-
resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
|
|
260
|
-
dependencies:
|
|
261
|
-
ee-first "1.1.1"
|
|
262
|
-
|
|
263
|
-
parseurl@~1.3.3:
|
|
264
|
-
version "1.3.3"
|
|
265
|
-
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
|
|
266
|
-
|
|
267
|
-
path-to-regexp@0.1.7:
|
|
268
|
-
version "0.1.7"
|
|
269
|
-
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
|
|
270
|
-
|
|
271
|
-
proxy-addr@~2.0.5:
|
|
272
|
-
version "2.0.6"
|
|
273
|
-
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
|
|
274
|
-
dependencies:
|
|
275
|
-
forwarded "~0.1.2"
|
|
276
|
-
ipaddr.js "1.9.1"
|
|
277
|
-
|
|
278
|
-
qs@6.7.0:
|
|
279
|
-
version "6.7.0"
|
|
280
|
-
resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
|
|
281
|
-
|
|
282
|
-
range-parser@~1.2.1:
|
|
283
|
-
version "1.2.1"
|
|
284
|
-
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
|
|
285
|
-
|
|
286
|
-
raw-body@2.4.0:
|
|
287
|
-
version "2.4.0"
|
|
288
|
-
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
|
|
289
|
-
dependencies:
|
|
290
|
-
bytes "3.1.0"
|
|
291
|
-
http-errors "1.7.2"
|
|
292
|
-
iconv-lite "0.4.24"
|
|
293
|
-
unpipe "1.0.0"
|
|
294
|
-
|
|
295
|
-
safe-buffer@5.1.2:
|
|
296
|
-
version "5.1.2"
|
|
297
|
-
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
|
298
|
-
|
|
299
|
-
"safer-buffer@>= 2.1.2 < 3":
|
|
300
|
-
version "2.1.2"
|
|
301
|
-
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
|
302
|
-
|
|
303
|
-
send@0.17.1:
|
|
304
|
-
version "0.17.1"
|
|
305
|
-
resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
|
|
306
|
-
dependencies:
|
|
307
|
-
debug "2.6.9"
|
|
308
|
-
depd "~1.1.2"
|
|
309
|
-
destroy "~1.0.4"
|
|
310
|
-
encodeurl "~1.0.2"
|
|
311
|
-
escape-html "~1.0.3"
|
|
312
|
-
etag "~1.8.1"
|
|
313
|
-
fresh "0.5.2"
|
|
314
|
-
http-errors "~1.7.2"
|
|
315
|
-
mime "1.6.0"
|
|
316
|
-
ms "2.1.1"
|
|
317
|
-
on-finished "~2.3.0"
|
|
318
|
-
range-parser "~1.2.1"
|
|
319
|
-
statuses "~1.5.0"
|
|
320
|
-
|
|
321
|
-
serve-static@1.14.1:
|
|
322
|
-
version "1.14.1"
|
|
323
|
-
resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
|
|
324
|
-
dependencies:
|
|
325
|
-
encodeurl "~1.0.2"
|
|
326
|
-
escape-html "~1.0.3"
|
|
327
|
-
parseurl "~1.3.3"
|
|
328
|
-
send "0.17.1"
|
|
329
|
-
|
|
330
|
-
setprototypeof@1.1.1:
|
|
331
|
-
version "1.1.1"
|
|
332
|
-
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
|
|
333
|
-
|
|
334
|
-
"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
|
|
335
|
-
version "1.5.0"
|
|
336
|
-
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
|
|
337
|
-
|
|
338
|
-
toidentifier@1.0.0:
|
|
339
|
-
version "1.0.0"
|
|
340
|
-
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
|
|
341
|
-
|
|
342
|
-
type-is@~1.6.17, type-is@~1.6.18:
|
|
343
|
-
version "1.6.18"
|
|
344
|
-
resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
|
|
345
|
-
dependencies:
|
|
346
|
-
media-typer "0.3.0"
|
|
347
|
-
mime-types "~2.1.24"
|
|
348
|
-
|
|
349
|
-
unpipe@1.0.0, unpipe@~1.0.0:
|
|
350
|
-
version "1.0.0"
|
|
351
|
-
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
|
|
352
|
-
|
|
353
|
-
utils-merge@1.0.1:
|
|
354
|
-
version "1.0.1"
|
|
355
|
-
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
|
|
356
|
-
|
|
357
|
-
vary@~1.1.2:
|
|
358
|
-
version "1.1.2"
|
|
359
|
-
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
|
|
360
|
-
|
|
361
|
-
Trace:
|
|
362
|
-
Error: This module isn't specified in a manifest.
|
|
363
|
-
at new MessageError (/Users/manus/.yarn/lib/cli.js:186:110)
|
|
364
|
-
at Object.<anonymous> (/Users/manus/.yarn/lib/cli.js:60445:15)
|
|
365
|
-
at Generator.next (<anonymous>)
|
|
366
|
-
at step (/Users/manus/.yarn/lib/cli.js:98:30)
|
|
367
|
-
at /Users/manus/.yarn/lib/cli.js:109:13
|