forked from pygame-web/pygbag
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'pygame-web:main' into raylib
- Loading branch information
Showing
34 changed files
with
356 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,7 +130,7 @@ dmypy.json | |
|
||
/0.0 | ||
/.eric6project | ||
/src | ||
# /src | ||
/dist | ||
/ATTIC | ||
/platform_wasm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Automatically generated type hinting file for a .ini file | ||
# Generated with config-to-object https://pypi.org/project/config-to-object/1.0.0/ | ||
# Run "ini_typefile your_config.ini type_file.py" to create a new type file | ||
|
||
from typing import NamedTuple, List, Tuple | ||
|
||
class DEPENDENCIES(NamedTuple): | ||
ignoredirs:List[str] | ||
ignorefiles:List[str] | ||
|
||
class Config(NamedTuple): | ||
DEPENDENCIES:DEPENDENCIES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# An example .ini file for pygbag configs | ||
|
||
[DEPENDENCIES] | ||
ignoreDirs = ["Folder1", "Folder2", "Folder3"] | ||
ignoreFiles = ["File1","File2", "File3"] | ||
# run `ini_typefile example.ini config_types.py` to regenerate the type hints for the ini file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
EXAMPLE_CONFIG = """[DEPENDENCIES] | ||
ignoreDirs = ["ignoreThisFolder","ignoreThisFolder2","ignoreThisFolder3"] | ||
ignoreFiles = ["File1.ignorethis", "File2.ignorethis", "File3.ignorethis"] | ||
""" |
Oops, something went wrong.