├── .babelrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── circle.yml ├── package.json ├── src ├── index.es6 └── tokenize.es6 └── test └── test.jsx /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /npm-debug.log* 3 | .DS_Store 4 | lib/ 5 | .idea/ 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | /npm-debug.log* 3 | .DS_Store 4 | .idea/ 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/package.json -------------------------------------------------------------------------------- /src/index.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/src/index.es6 -------------------------------------------------------------------------------- /src/tokenize.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/src/tokenize.es6 -------------------------------------------------------------------------------- /test/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/interpolate-components/HEAD/test/test.jsx --------------------------------------------------------------------------------