Skip to content

Commit 2fe6223

Browse files
authored
Regenerate lockfiles (#12)
1 parent 1f5c54d commit 2fe6223

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed

examples/package/rbxasset.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[assets.package]
2-
assetId = "70942996502762"
2+
assetId = "76204828105556"
33

44
[images."icon.png"]
5-
assetId = "138661787727820"
5+
assetId = "123791419756670"
66
hash = "fac185770cf5e824d4c0a9b59e547df42dc10011c5ad139bfc2c7e1507eef631"

examples/package/rbxasset.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[assets.package]
2-
name = "Display Name"
2+
name = "Example Package"
33
environment = "production"
44
description = "Longform description"
55
icon = "icon.png"

examples/plugin/rbxasset.lock

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
[assets.plugin]
2-
assetId = "136176915775390"
2+
assetId = "128311365749494"
33

4-
[images]
4+
[images."icon.png"]
5+
assetId = "78626044313675"
6+
hash = "fac185770cf5e824d4c0a9b59e547df42dc10011c5ad139bfc2c7e1507eef631"

examples/workspace/rbxasset.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[assets.package]
2-
assetId = "138338710724500"
2+
assetId = "125288232876669"
33

44
[assets.plugin]
5-
assetId = "134845848763192"
5+
assetId = "80174631732146"
66

77
[images."package/icon.png"]
8-
assetId = "128481227324335"
8+
assetId = "115367029120019"
99
hash = "fac185770cf5e824d4c0a9b59e547df42dc10011c5ad139bfc2c7e1507eef631"
1010

1111
[images."plugin/icon.png"]
12-
assetId = "118304779794579"
12+
assetId = "105616167657986"
1313
hash = "fac185770cf5e824d4c0a9b59e547df42dc10011c5ad139bfc2c7e1507eef631"

examples/workspace/rbxasset.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[assets.package]
2-
name = "Workspace Package"
2+
name = "Example Workspace Package"
33
environment = "production"
44
description = "Longform description"
55
icon = "package/icon.png"
66
model = "package.rbxm"
77

88
[assets.plugin]
9-
name = "Workspace Plugin"
9+
name = "Example Workspace Plugin"
1010
environment = "production"
1111
description = "Longform description"
1212
icon = "plugin/icon.png"

src/manifest/getOrCreateAssetLockfile.spec.luau

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local getOrCreateAssetLockfile = require("./getOrCreateAssetLockfile")
66

77
test.case("reads an asset lockfile from disk", function()
88
local lockfile = getOrCreateAssetLockfile("examples/package")
9-
check.equal(lockfile.assets["package"].assetId, "70942996502762")
9+
check.equal(lockfile.assets["package"].assetId, "76204828105556")
1010
end)
1111

1212
test.case("creates a blank asset lockfile when not found on disk", function()

0 commit comments

Comments
 (0)