├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ ├── node.js.yml │ └── release.js.yml ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit └── pre-push ├── .versionrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── builder.js ├── commitlint.config.js ├── example ├── index.js ├── notificator │ ├── notificator.js │ └── notificatorConsole.js └── say-hello │ ├── say-hello.css │ └── say-hello.js └── package.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/release.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.github/workflows/release.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | dist/ 4 | release/ 5 | coverage/ 6 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm test 5 | -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.versionrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/README.md -------------------------------------------------------------------------------- /bin/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/bin/builder.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']}; -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/example/index.js -------------------------------------------------------------------------------- /example/notificator/notificator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/example/notificator/notificator.js -------------------------------------------------------------------------------- /example/notificator/notificatorConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/example/notificator/notificatorConsole.js -------------------------------------------------------------------------------- /example/say-hello/say-hello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/example/say-hello/say-hello.css -------------------------------------------------------------------------------- /example/say-hello/say-hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/example/say-hello/say-hello.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/va4ok/userscript-builder/HEAD/package.json --------------------------------------------------------------------------------