├── .github └── workflows │ ├── latest.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── dev ├── context.json ├── index.html ├── sample.html └── sample2.html ├── examples ├── cdn │ ├── basic.html │ └── context.html └── npm │ ├── basic.html │ └── context.html ├── index.js ├── index.min.js ├── package.json └── src └── wc-template.js /.github/workflows/latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/.github/workflows/latest.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | .vscode/ 3 | dev/ 4 | *.tgz 5 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/README.md -------------------------------------------------------------------------------- /dev/context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/dev/context.json -------------------------------------------------------------------------------- /dev/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/dev/index.html -------------------------------------------------------------------------------- /dev/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/dev/sample.html -------------------------------------------------------------------------------- /dev/sample2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/dev/sample2.html -------------------------------------------------------------------------------- /examples/cdn/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/examples/cdn/basic.html -------------------------------------------------------------------------------- /examples/cdn/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/examples/cdn/context.html -------------------------------------------------------------------------------- /examples/npm/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/examples/npm/basic.html -------------------------------------------------------------------------------- /examples/npm/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/examples/npm/context.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/index.js -------------------------------------------------------------------------------- /index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/index.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/package.json -------------------------------------------------------------------------------- /src/wc-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanillawc/wc-template/HEAD/src/wc-template.js --------------------------------------------------------------------------------