├── .babelrc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src └── index.js └── test ├── error-fixtures └── .gitkeep ├── fixtures ├── destructure-with-others │ ├── code.js │ └── output.js ├── destructure-without-date-fns │ ├── code.js │ └── output.js ├── destructure │ ├── code.js │ └── output.js ├── iso-functions │ ├── code.js │ └── output.js └── locales │ ├── code.js │ └── output.js └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | lib 5 | *.orig 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/src/index.js -------------------------------------------------------------------------------- /test/error-fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/destructure-with-others/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/destructure-with-others/code.js -------------------------------------------------------------------------------- /test/fixtures/destructure-with-others/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/destructure-with-others/output.js -------------------------------------------------------------------------------- /test/fixtures/destructure-without-date-fns/code.js: -------------------------------------------------------------------------------- 1 | import foo from "foo"; 2 | -------------------------------------------------------------------------------- /test/fixtures/destructure-without-date-fns/output.js: -------------------------------------------------------------------------------- 1 | import foo from "foo"; 2 | -------------------------------------------------------------------------------- /test/fixtures/destructure/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/destructure/code.js -------------------------------------------------------------------------------- /test/fixtures/destructure/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/destructure/output.js -------------------------------------------------------------------------------- /test/fixtures/iso-functions/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/iso-functions/code.js -------------------------------------------------------------------------------- /test/fixtures/iso-functions/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/iso-functions/output.js -------------------------------------------------------------------------------- /test/fixtures/locales/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/locales/code.js -------------------------------------------------------------------------------- /test/fixtures/locales/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/fixtures/locales/output.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/date-fns/babel-plugin-date-fns/HEAD/test/index.js --------------------------------------------------------------------------------