├── .ci-scripts ├── release.bash └── upload-release-documentation-to-main-actor.bash ├── .circleci └── config.yml ├── .github └── FUNDING.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_PROCESS.md ├── STYLE_GUIDE.md ├── USAGE.md ├── make.bat └── release.bash /.ci-scripts/release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/.ci-scripts/release.bash -------------------------------------------------------------------------------- /.ci-scripts/upload-release-documentation-to-main-actor.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/.ci-scripts/upload-release-documentation-to-main-actor.bash -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: ponyc 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/USAGE.md -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/make.bat -------------------------------------------------------------------------------- /release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponylang/library-project-starter/HEAD/release.bash --------------------------------------------------------------------------------