├── .babelrc ├── .github └── workflows │ └── action-ci.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── example ├── .babelrc ├── index.html ├── package.json ├── src │ ├── decorator.js │ └── index.js └── webpack.config.js ├── lib └── index.js ├── package.json ├── src └── index.js ├── test ├── greeter.js ├── index.js └── src │ ├── decorators │ └── index.js │ ├── js │ ├── .babelrc │ └── index.js │ └── ts │ ├── .babelrc │ ├── Greeter.ts │ ├── GreeterFactory.ts │ ├── Sentinel.ts │ └── UserRepo.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/action-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/.github/workflows/action-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | dist/ 4 | test/lib -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example/ 2 | test/ 3 | src/ 4 | .idea/ 5 | .github/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/decorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/example/src/decorator.js -------------------------------------------------------------------------------- /example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/example/src/index.js -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/src/index.js -------------------------------------------------------------------------------- /test/greeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/greeter.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/index.js -------------------------------------------------------------------------------- /test/src/decorators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/src/decorators/index.js -------------------------------------------------------------------------------- /test/src/js/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/src/js/.babelrc -------------------------------------------------------------------------------- /test/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/src/js/index.js -------------------------------------------------------------------------------- /test/src/ts/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/src/ts/.babelrc -------------------------------------------------------------------------------- /test/src/ts/Greeter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/src/ts/Greeter.ts -------------------------------------------------------------------------------- /test/src/ts/GreeterFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/src/ts/GreeterFactory.ts -------------------------------------------------------------------------------- /test/src/ts/Sentinel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/test/src/ts/Sentinel.ts -------------------------------------------------------------------------------- /test/src/ts/UserRepo.ts: -------------------------------------------------------------------------------- 1 | export class UserRepo {} -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerHooh/babel-plugin-parameter-decorator/HEAD/tsconfig.json --------------------------------------------------------------------------------