├── .editorconfig ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yml ├── .release-it.json ├── babel.config.json ├── jest.config.json ├── license ├── package.json ├── readme.md ├── src └── index.js └── test ├── asset-folder ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.css ├── index.js └── index.test.js ├── css-asset ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.css ├── index.js └── index.test.js ├── css-basic ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── index.css ├── index.js └── index.test.js ├── exclude ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.css ├── index.js └── index.test.js ├── flat-multi ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.js └── index.test.js ├── flat-single-non-absolute ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── index.js └── index.test.js ├── flat-single ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── index.js └── index.test.js ├── include ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.css ├── index.js └── index.test.js ├── indirect-deep-multi ├── __snapshots__ │ └── index.test.js.snap ├── image.png ├── index.js ├── index.test.js └── sub │ └── folder │ ├── child.js │ └── content.md ├── indirect-deep-single ├── __snapshots__ │ └── index.test.js.snap ├── index.js ├── index.test.js └── sub │ └── folder │ ├── child.js │ └── content.md ├── indirect-js-ext ├── __snapshots__ │ └── index.test.js.snap ├── index.js ├── index.test.js └── sub │ └── folder │ ├── child.js │ └── content.md ├── indirect-single ├── __snapshots__ │ └── index.test.js.snap ├── child.js ├── content.md ├── index.js └── index.test.js ├── indirect-sub-root ├── __snapshots__ │ └── index.test.js.snap ├── index.test.js └── src │ ├── index.js │ └── sub │ └── folder │ ├── child.js │ └── content.md ├── keep-name ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.css ├── index.js └── index.test.js ├── missing-file ├── __snapshots__ │ └── index.test.js.snap ├── impl.special.js ├── index.js └── index.test.js ├── one-level ├── __snapshots__ │ └── index.test.js.snap ├── assets │ └── content.md ├── index.js └── index.test.js ├── scss-asset-import ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── index.js ├── index.scss ├── index.test.js └── main │ ├── image.png │ └── main.scss ├── scss-asset ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.js ├── index.scss └── index.test.js ├── sugarss-asset ├── __snapshots__ │ └── index.test.js.snap ├── content.md ├── image.png ├── index.js ├── index.sss └── index.test.js └── util.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/fixtures/ 2 | lib 3 | coverage 4 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: 2 | - "@effective" 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | lib 4 | coverage 5 | __tests__/output 6 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | lib 2 | coverage 3 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/.release-it.json -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/babel.config.json -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/jest.config.json -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/src/index.js -------------------------------------------------------------------------------- /test/asset-folder/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/asset-folder/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/asset-folder/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/asset-folder/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/asset-folder/image.png -------------------------------------------------------------------------------- /test/asset-folder/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 20px; 3 | background: url(./image.png) top left repeat; 4 | } 5 | -------------------------------------------------------------------------------- /test/asset-folder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/asset-folder/index.js -------------------------------------------------------------------------------- /test/asset-folder/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/asset-folder/index.test.js -------------------------------------------------------------------------------- /test/css-asset/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/css-asset/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/css-asset/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/css-asset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/css-asset/image.png -------------------------------------------------------------------------------- /test/css-asset/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 20px; 3 | background: url(./image.png) top left repeat; 4 | } 5 | -------------------------------------------------------------------------------- /test/css-asset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/css-asset/index.js -------------------------------------------------------------------------------- /test/css-asset/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/css-asset/index.test.js -------------------------------------------------------------------------------- /test/css-basic/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/css-basic/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/css-basic/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/css-basic/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /test/css-basic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/css-basic/index.js -------------------------------------------------------------------------------- /test/css-basic/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/css-basic/index.test.js -------------------------------------------------------------------------------- /test/exclude/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/exclude/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/exclude/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/exclude/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/exclude/image.png -------------------------------------------------------------------------------- /test/exclude/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/exclude/index.css -------------------------------------------------------------------------------- /test/exclude/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/exclude/index.js -------------------------------------------------------------------------------- /test/exclude/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/exclude/index.test.js -------------------------------------------------------------------------------- /test/flat-multi/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-multi/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/flat-multi/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/flat-multi/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-multi/image.png -------------------------------------------------------------------------------- /test/flat-multi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-multi/index.js -------------------------------------------------------------------------------- /test/flat-multi/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-multi/index.test.js -------------------------------------------------------------------------------- /test/flat-single-non-absolute/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-single-non-absolute/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/flat-single-non-absolute/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/flat-single-non-absolute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-single-non-absolute/index.js -------------------------------------------------------------------------------- /test/flat-single-non-absolute/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-single-non-absolute/index.test.js -------------------------------------------------------------------------------- /test/flat-single/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-single/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/flat-single/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/flat-single/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-single/index.js -------------------------------------------------------------------------------- /test/flat-single/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/flat-single/index.test.js -------------------------------------------------------------------------------- /test/include/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/include/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/include/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/include/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/include/image.png -------------------------------------------------------------------------------- /test/include/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/include/index.css -------------------------------------------------------------------------------- /test/include/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/include/index.js -------------------------------------------------------------------------------- /test/include/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/include/index.test.js -------------------------------------------------------------------------------- /test/indirect-deep-multi/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-multi/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/indirect-deep-multi/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-multi/image.png -------------------------------------------------------------------------------- /test/indirect-deep-multi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-multi/index.js -------------------------------------------------------------------------------- /test/indirect-deep-multi/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-multi/index.test.js -------------------------------------------------------------------------------- /test/indirect-deep-multi/sub/folder/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-multi/sub/folder/child.js -------------------------------------------------------------------------------- /test/indirect-deep-multi/sub/folder/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/indirect-deep-single/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-single/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/indirect-deep-single/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-single/index.js -------------------------------------------------------------------------------- /test/indirect-deep-single/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-single/index.test.js -------------------------------------------------------------------------------- /test/indirect-deep-single/sub/folder/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-deep-single/sub/folder/child.js -------------------------------------------------------------------------------- /test/indirect-deep-single/sub/folder/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/indirect-js-ext/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-js-ext/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/indirect-js-ext/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-js-ext/index.js -------------------------------------------------------------------------------- /test/indirect-js-ext/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-js-ext/index.test.js -------------------------------------------------------------------------------- /test/indirect-js-ext/sub/folder/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-js-ext/sub/folder/child.js -------------------------------------------------------------------------------- /test/indirect-js-ext/sub/folder/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/indirect-single/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-single/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/indirect-single/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-single/child.js -------------------------------------------------------------------------------- /test/indirect-single/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/indirect-single/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-single/index.js -------------------------------------------------------------------------------- /test/indirect-single/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-single/index.test.js -------------------------------------------------------------------------------- /test/indirect-sub-root/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-sub-root/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/indirect-sub-root/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-sub-root/index.test.js -------------------------------------------------------------------------------- /test/indirect-sub-root/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-sub-root/src/index.js -------------------------------------------------------------------------------- /test/indirect-sub-root/src/sub/folder/child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/indirect-sub-root/src/sub/folder/child.js -------------------------------------------------------------------------------- /test/indirect-sub-root/src/sub/folder/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/keep-name/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/keep-name/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/keep-name/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/keep-name/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/keep-name/image.png -------------------------------------------------------------------------------- /test/keep-name/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 20px; 3 | background: url(./image.png) top left repeat; 4 | } 5 | -------------------------------------------------------------------------------- /test/keep-name/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/keep-name/index.js -------------------------------------------------------------------------------- /test/keep-name/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/keep-name/index.test.js -------------------------------------------------------------------------------- /test/missing-file/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/missing-file/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/missing-file/impl.special.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/missing-file/impl.special.js -------------------------------------------------------------------------------- /test/missing-file/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/missing-file/index.js -------------------------------------------------------------------------------- /test/missing-file/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/missing-file/index.test.js -------------------------------------------------------------------------------- /test/one-level/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/one-level/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/one-level/assets/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/one-level/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/one-level/index.js -------------------------------------------------------------------------------- /test/one-level/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/one-level/index.test.js -------------------------------------------------------------------------------- /test/scss-asset-import/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset-import/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/scss-asset-import/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/scss-asset-import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset-import/index.js -------------------------------------------------------------------------------- /test/scss-asset-import/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset-import/index.scss -------------------------------------------------------------------------------- /test/scss-asset-import/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset-import/index.test.js -------------------------------------------------------------------------------- /test/scss-asset-import/main/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset-import/main/image.png -------------------------------------------------------------------------------- /test/scss-asset-import/main/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset-import/main/main.scss -------------------------------------------------------------------------------- /test/scss-asset/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/scss-asset/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/scss-asset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset/image.png -------------------------------------------------------------------------------- /test/scss-asset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset/index.js -------------------------------------------------------------------------------- /test/scss-asset/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset/index.scss -------------------------------------------------------------------------------- /test/scss-asset/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/scss-asset/index.test.js -------------------------------------------------------------------------------- /test/sugarss-asset/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/sugarss-asset/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/sugarss-asset/content.md: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /test/sugarss-asset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/sugarss-asset/image.png -------------------------------------------------------------------------------- /test/sugarss-asset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/sugarss-asset/index.js -------------------------------------------------------------------------------- /test/sugarss-asset/index.sss: -------------------------------------------------------------------------------- 1 | body 2 | font-size: 20px 3 | background: url(./image.png) top left repeat 4 | -------------------------------------------------------------------------------- /test/sugarss-asset/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/sugarss-asset/index.test.js -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastian-software/rollup-plugin-rebase/HEAD/test/util.js --------------------------------------------------------------------------------