Skip to content

Commit b234555

Browse files
committed
Use packages from @fable-org
1 parent 7a0e989 commit b234555

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

build.fsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ module Folders =
5151
let METADATA_OUTPUT = Path.Combine(CWD, "src/App/public/metadata")
5252
let METADATA_EXTRA = Path.Combine(CWD, "src/metadata")
5353

54-
let METADATA_LIB = Path.Combine(CWD, "node_modules/fable-metadata/lib")
54+
let METADATA_LIB = Path.Combine(CWD, "node_modules/@fable-org/fable-metadata/lib")
5555

5656
let STANDALONE_DIST =
57-
Path.Combine(CWD, "node_modules/fable-standalone/dist")
57+
Path.Combine(CWD, "node_modules/@fable-org/fable-standalone/dist")
5858

59-
let STANDALONE_SRC = Path.Combine(CWD, "node_modules/fable-standalone/src")
59+
let STANDALONE_SRC = Path.Combine(CWD, "node_modules/@fable-org/fable-standalone/src")
6060

6161

6262
module Files =
@@ -240,8 +240,8 @@ module Stages =
240240
CmdLine.empty
241241
|> CmdLine.appendRaw "npx"
242242
|> CmdLine.appendRaw "npm-check-updates"
243-
|> CmdLine.appendRaw "fable-standalone"
244-
|> CmdLine.appendRaw "fable-metadata"
243+
|> CmdLine.appendRaw "@fable-org/fable-standalone"
244+
|> CmdLine.appendRaw "@fable-org/fable-metadata"
245245
|> CmdLine.toString
246246
|> ctx.RunCommandCaptureOutput
247247

@@ -294,8 +294,8 @@ pipeline "AutoUpdate" {
294294
|> CmdLine.appendRaw "npx"
295295
|> CmdLine.appendRaw "npm-check-updates"
296296
|> CmdLine.appendRaw "-u"
297-
|> CmdLine.appendRaw "fable-standalone"
298-
|> CmdLine.appendRaw "fable-metadata"
297+
|> CmdLine.appendRaw "@fable-org/fable-standalone"
298+
|> CmdLine.appendRaw "@fable-org/fable-metadata"
299299
|> CmdLine.toString
300300
)
301301
run "npm install"

package-lock.json

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"private": true,
33
"scripts": {},
44
"dependencies": {
5+
"@fable-org/fable-metadata": "^1.0.0-beta-001",
6+
"@fable-org/fable-standalone": "^1.0.0-beta-001",
57
"@fortawesome/fontawesome-free": "^6.4.2",
68
"@types/lz-string": "^1.3.34",
79
"autoprefixer": "^10.4.16",
@@ -10,8 +12,6 @@
1012
"bulma-pageloader": "^2.2.0",
1113
"bulma-switch": "^2.0.4",
1214
"bulma-tooltip": "^3.0.2",
13-
"fable-metadata": "^2.2.0",
14-
"fable-standalone": "^3.8.0",
1515
"gh-pages": "^6.0.0",
1616
"lz-string": "^1.5.0",
1717
"monaco-editor-webpack-plugin": "^7.1.0",

0 commit comments

Comments
 (0)