├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .npmignore ├── .npmrc ├── .tern-project ├── .travis.yml ├── LICENSE ├── README.md ├── appveyor.yml ├── demo.gif ├── jsreport.config.js ├── lib ├── electron.js ├── index.js └── recipe.js ├── package.json ├── src ├── electron.js ├── index.js └── recipe.js ├── studio ├── .npmignore ├── ElectronPdfProperties.js ├── main.js ├── main.js.map └── main_dev.js └── test ├── .eslintrc ├── mocha.opts └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | **/node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | src 4 | test 5 | demo.gif 6 | data 7 | logs 8 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.tern-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/.tern-project -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/appveyor.yml -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/demo.gif -------------------------------------------------------------------------------- /jsreport.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/jsreport.config.js -------------------------------------------------------------------------------- /lib/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/lib/electron.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/lib/recipe.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/package.json -------------------------------------------------------------------------------- /src/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/src/electron.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/src/index.js -------------------------------------------------------------------------------- /src/recipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/src/recipe.js -------------------------------------------------------------------------------- /studio/.npmignore: -------------------------------------------------------------------------------- 1 | !main.js -------------------------------------------------------------------------------- /studio/ElectronPdfProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/studio/ElectronPdfProperties.js -------------------------------------------------------------------------------- /studio/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/studio/main.js -------------------------------------------------------------------------------- /studio/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/studio/main.js.map -------------------------------------------------------------------------------- /studio/main_dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/studio/main_dev.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers js:babel/register 2 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjrmatos/jsreport-electron-pdf/HEAD/test/test.js --------------------------------------------------------------------------------