├── .github ├── actions │ └── generate-resources │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── __tests__ │ │ └── main.test.js │ │ ├── action.yml │ │ ├── init.js │ │ ├── main.js │ │ └── package.json └── workflows │ └── refresh.yml ├── CONTRIBUTING.md ├── GLOSSARY.md ├── README.md └── RESOURCES.md /.github/actions/generate-resources/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.lock -------------------------------------------------------------------------------- /.github/actions/generate-resources/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/actions/generate-resources/.prettierrc -------------------------------------------------------------------------------- /.github/actions/generate-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/actions/generate-resources/README.md -------------------------------------------------------------------------------- /.github/actions/generate-resources/__tests__/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/actions/generate-resources/__tests__/main.test.js -------------------------------------------------------------------------------- /.github/actions/generate-resources/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/actions/generate-resources/action.yml -------------------------------------------------------------------------------- /.github/actions/generate-resources/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/actions/generate-resources/init.js -------------------------------------------------------------------------------- /.github/actions/generate-resources/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/actions/generate-resources/main.js -------------------------------------------------------------------------------- /.github/actions/generate-resources/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/actions/generate-resources/package.json -------------------------------------------------------------------------------- /.github/workflows/refresh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/.github/workflows/refresh.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GLOSSARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/GLOSSARY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/README.md -------------------------------------------------------------------------------- /RESOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-DAO/resources/HEAD/RESOURCES.md --------------------------------------------------------------------------------