├── .babelrc.js ├── .circleci └── config.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmignore ├── .prettierrc.json ├── .vscode ├── launch.json └── settings.json ├── ChangeLog.md ├── LICENSE ├── README-zh_CN.md ├── README.md ├── changelog.config.json ├── commitlint.config.js ├── gulpfile.mjs ├── package.json ├── pnpm-lock.yaml ├── src ├── config.ts ├── index.ts └── once-init.ts ├── test ├── index.test.ts ├── once-init.test.ts └── tsconfig.json ├── tsconfig.json ├── vitest.config.ts └── webpack.config.js /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["bupoint", "fingerprintjs"] 3 | } 4 | -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/README-zh_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/README.md -------------------------------------------------------------------------------- /changelog.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/changelog.config.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/gulpfile.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/once-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/src/once-init.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/once-init.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/test/once-init.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-lock/once-init/HEAD/webpack.config.js --------------------------------------------------------------------------------