Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip install mkdocs-material --break-system-packages && rokit install --no-trust-check && wally install",
"postCreateCommand": "pip install mkdocs-material --break-system-packages && rokit install --no-trust-check && wally install && rojo sourcemap develop.project.json --output sourcemap.json && wally-package-types --sourcemap sourcemap.json Packages/",

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "root"
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
uses: CompeyDev/setup-rokit@v0.1.2

- name: Setup Wally
run: wally install
run: |
wally install
rojo sourcemap develop.project.json --output sourcemap.json
wally-package-types --sourcemap sourcemap.json Packages/

- name: Build using Rojo
run: |
Expand Down
1 change: 1 addition & 0 deletions rokit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ rojo = "rojo-rbx/rojo@7.6.1"
selene = "Kampfkarren/selene@0.29.0"
stylua = "JohnnyMorganz/stylua@2.3.1"
wally = "UpliftGames/wally@0.3.2"
wally-package-types = "JohnnyMorganz/wally-package-types@1.6.2"
2 changes: 0 additions & 2 deletions src/ContextAction.client.luau
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
--!strict

local ContextActionService = game:GetService("ContextActionService")
local BackpackScript = require(script.Parent)

Expand Down
2 changes: 0 additions & 2 deletions src/TopbarIcon.client.luau
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
--!strict

local BackpackScript = require(script.Parent)
local Icon = require(script.Parent.Parent.topbarplus)

Expand Down
6 changes: 2 additions & 4 deletions src/init.luau
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
-- ROBLOX upstream https://github.com/MaximumADHD/Roblox-Client-Tracker/blob/829cb13cc98870ddbcf4ba6bd48b774a87ae549f/scripts/CoreScripts/Modules/BackpackScript.lua
--# selene: allow(deprecated)
--# selene: allow(shadowing)
--# selene: allow(unscoped_variables)
--# selene: allow(unused_variable)
--!nolint DeprecatedApi
--# selene: allow(deprecated, shadowing, unscoped_variables, unused_variable)

-- Backpack Version 5.1
-- OnlyTwentyCharacters, SolarCrane
Expand Down