├── .gitignore ├── FIX.sh ├── IMPORT_FIXER.sh ├── IMPORT_FIXER_ALL.sh ├── README.md ├── deno_modules ├── example.js ├── lodash.js ├── marked.js └── path.js ├── package.json ├── src ├── example.js └── main.ts ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /FIX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/FIX.sh -------------------------------------------------------------------------------- /IMPORT_FIXER.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/IMPORT_FIXER.sh -------------------------------------------------------------------------------- /IMPORT_FIXER_ALL.sh: -------------------------------------------------------------------------------- 1 | find ./deno_modules -type f -exec sh IMPORT_FIXER.sh '{}' \; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/README.md -------------------------------------------------------------------------------- /deno_modules/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/deno_modules/example.js -------------------------------------------------------------------------------- /deno_modules/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/deno_modules/lodash.js -------------------------------------------------------------------------------- /deno_modules/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/deno_modules/marked.js -------------------------------------------------------------------------------- /deno_modules/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/deno_modules/path.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/package.json -------------------------------------------------------------------------------- /src/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/src/example.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/src/main.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reggi/node-to-deno/HEAD/yarn.lock --------------------------------------------------------------------------------