├── .babelrc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── space-sync ├── example-config.json ├── index.js ├── lib ├── dump-error-buffer.js ├── get-transformed-destination-response.js ├── run-space-sync.js └── usageParams.js ├── package.json └── test ├── run-space-sync-test.js └── runner /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/README.md -------------------------------------------------------------------------------- /bin/space-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/bin/space-sync -------------------------------------------------------------------------------- /example-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/example-config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/index.js -------------------------------------------------------------------------------- /lib/dump-error-buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/lib/dump-error-buffer.js -------------------------------------------------------------------------------- /lib/get-transformed-destination-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/lib/get-transformed-destination-response.js -------------------------------------------------------------------------------- /lib/run-space-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/lib/run-space-sync.js -------------------------------------------------------------------------------- /lib/usageParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/lib/usageParams.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/package.json -------------------------------------------------------------------------------- /test/run-space-sync-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/test/run-space-sync-test.js -------------------------------------------------------------------------------- /test/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful/contentful-space-sync/HEAD/test/runner --------------------------------------------------------------------------------