create-blocklet 0.4.81 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (329) hide show
  1. package/README.md +4 -4
  2. package/{templates/docsite → common}/.editorconfig +0 -0
  3. package/{templates/docsite → common}/.github/workflows/main.yml +0 -0
  4. package/{templates/docsite → common}/.github/workflows/pr-title.yml +0 -0
  5. package/{templates/docsite → common}/.github/workflows/version-check.yml +0 -0
  6. package/{templates/express-api → common}/.husky/pre-commit +0 -0
  7. package/{templates/docsite → common}/.prettierrc +0 -0
  8. package/{templates/docsite → common}/LICENSE +0 -0
  9. package/{templates/docsite → common}/_gitignore +0 -0
  10. package/{templates/docsite → common}/_npmrc +0 -0
  11. package/{templates/docsite → common}/logo.png +0 -0
  12. package/{templates/docsite → common}/public/favicon.ico +0 -0
  13. package/{templates/docsite → common}/public/robots.txt +0 -0
  14. package/{templates/docsite → common}/screenshots/.gitkeep +0 -0
  15. package/{templates/express-api → common}/scripts/build-clean.js +0 -0
  16. package/{templates/docsite → common}/scripts/bump-version.mjs +6 -4
  17. package/{templates/docsite → common}/version +0 -0
  18. package/index.js +64 -70
  19. package/package.json +5 -6
  20. package/templates/docsite/package.json +4 -4
  21. package/templates/express-api/package.json +5 -5
  22. package/templates/html-static/package.json +3 -3
  23. package/templates/monorepo/package.json +1 -1
  24. package/templates/monorepo/scripts/bump-version.mjs +13 -17
  25. package/templates/nextjs-dapp/package.json +7 -7
  26. package/templates/react-dapp/api/dev.js +4 -0
  27. package/templates/react-dapp/api/index.js +10 -12
  28. package/templates/react-dapp/index.html +0 -1
  29. package/templates/react-dapp/package.json +11 -14
  30. package/templates/react-dapp/vite.config.js +3 -28
  31. package/templates/react-gun-dapp/api/dev.js +4 -0
  32. package/templates/react-gun-dapp/api/index.js +4 -12
  33. package/templates/react-gun-dapp/index.html +0 -1
  34. package/templates/react-gun-dapp/package.json +15 -17
  35. package/templates/react-gun-dapp/vite.config.js +3 -33
  36. package/templates/react-static/index.html +0 -1
  37. package/templates/react-static/package.json +8 -9
  38. package/templates/react-static/vite.config.js +3 -18
  39. package/templates/solidjs-dapp/api/dev.js +4 -0
  40. package/templates/solidjs-dapp/api/index.js +10 -12
  41. package/templates/solidjs-dapp/index.html +0 -1
  42. package/templates/solidjs-dapp/package.json +14 -17
  43. package/templates/solidjs-dapp/vite.config.js +3 -23
  44. package/templates/solidjs-static/index.html +0 -1
  45. package/templates/solidjs-static/package.json +7 -8
  46. package/templates/solidjs-static/vite.config.js +3 -17
  47. package/templates/svelte-dapp/api/dev.js +4 -0
  48. package/templates/svelte-dapp/api/index.js +10 -12
  49. package/templates/svelte-dapp/index.html +0 -1
  50. package/templates/svelte-dapp/package.json +13 -15
  51. package/templates/svelte-dapp/vite.config.js +3 -23
  52. package/templates/svelte-static/index.html +0 -1
  53. package/templates/svelte-static/package.json +6 -7
  54. package/templates/svelte-static/vite.config.js +3 -17
  55. package/templates/vue-dapp/api/dev.js +4 -0
  56. package/templates/vue-dapp/api/index.js +10 -12
  57. package/templates/vue-dapp/index.html +0 -1
  58. package/templates/vue-dapp/package.json +14 -17
  59. package/templates/vue-dapp/vite.config.js +3 -27
  60. package/templates/vue-static/index.html +0 -1
  61. package/templates/vue-static/package.json +7 -8
  62. package/templates/vue-static/vite.config.js +3 -17
  63. package/templates/vue2-dapp/.eslintrc.js +0 -3
  64. package/templates/vue2-dapp/api/dev.js +4 -0
  65. package/templates/vue2-dapp/api/index.js +10 -12
  66. package/templates/vue2-dapp/{public/index.html → index.html} +4 -6
  67. package/templates/vue2-dapp/package.json +19 -24
  68. package/templates/vue2-dapp/vite.config.js +10 -0
  69. package/templates/vue2-static/.eslintrc.js +0 -3
  70. package/templates/vue2-static/{public/index.html → index.html} +4 -6
  71. package/templates/vue2-static/package.json +13 -16
  72. package/templates/vue2-static/vite.config.js +10 -0
  73. package/templates/website/package.json +3 -3
  74. package/templates/docsite/scripts/build-clean.js +0 -6
  75. package/templates/express-api/.editorconfig +0 -23
  76. package/templates/express-api/.github/workflows/main.yml +0 -36
  77. package/templates/express-api/.github/workflows/pr-title.yml +0 -21
  78. package/templates/express-api/.github/workflows/version-check.yml +0 -20
  79. package/templates/express-api/.prettierrc +0 -9
  80. package/templates/express-api/LICENSE +0 -13
  81. package/templates/express-api/_gitignore +0 -28
  82. package/templates/express-api/_npmrc +0 -3
  83. package/templates/express-api/logo.png +0 -0
  84. package/templates/express-api/public/favicon.ico +0 -0
  85. package/templates/express-api/public/robots.txt +0 -3
  86. package/templates/express-api/screenshots/.gitkeep +0 -0
  87. package/templates/express-api/scripts/bump-version.mjs +0 -33
  88. package/templates/express-api/version +0 -1
  89. package/templates/html-static/.editorconfig +0 -23
  90. package/templates/html-static/.github/workflows/main.yml +0 -36
  91. package/templates/html-static/.github/workflows/pr-title.yml +0 -21
  92. package/templates/html-static/.github/workflows/version-check.yml +0 -20
  93. package/templates/html-static/.prettierrc +0 -9
  94. package/templates/html-static/LICENSE +0 -13
  95. package/templates/html-static/_gitignore +0 -28
  96. package/templates/html-static/_npmrc +0 -3
  97. package/templates/html-static/logo.png +0 -0
  98. package/templates/html-static/public/favicon.ico +0 -0
  99. package/templates/html-static/public/robots.txt +0 -3
  100. package/templates/html-static/screenshots/.gitkeep +0 -0
  101. package/templates/html-static/scripts/build-clean.js +0 -5
  102. package/templates/html-static/scripts/bump-version.mjs +0 -33
  103. package/templates/html-static/version +0 -1
  104. package/templates/nextjs-dapp/.editorconfig +0 -23
  105. package/templates/nextjs-dapp/.github/workflows/main.yml +0 -36
  106. package/templates/nextjs-dapp/.github/workflows/pr-title.yml +0 -21
  107. package/templates/nextjs-dapp/.github/workflows/version-check.yml +0 -20
  108. package/templates/nextjs-dapp/.husky/pre-commit +0 -4
  109. package/templates/nextjs-dapp/.prettierrc +0 -9
  110. package/templates/nextjs-dapp/LICENSE +0 -13
  111. package/templates/nextjs-dapp/_gitignore +0 -28
  112. package/templates/nextjs-dapp/_npmrc +0 -3
  113. package/templates/nextjs-dapp/logo.png +0 -0
  114. package/templates/nextjs-dapp/public/favicon.ico +0 -0
  115. package/templates/nextjs-dapp/public/robots.txt +0 -3
  116. package/templates/nextjs-dapp/screenshots/.gitkeep +0 -0
  117. package/templates/nextjs-dapp/scripts/build-clean.js +0 -5
  118. package/templates/nextjs-dapp/scripts/bump-version.mjs +0 -33
  119. package/templates/nextjs-dapp/version +0 -1
  120. package/templates/react-dapp/.editorconfig +0 -23
  121. package/templates/react-dapp/.env +0 -2
  122. package/templates/react-dapp/.github/workflows/main.yml +0 -36
  123. package/templates/react-dapp/.github/workflows/pr-title.yml +0 -21
  124. package/templates/react-dapp/.github/workflows/version-check.yml +0 -20
  125. package/templates/react-dapp/.husky/pre-commit +0 -4
  126. package/templates/react-dapp/.prettierrc +0 -9
  127. package/templates/react-dapp/LICENSE +0 -13
  128. package/templates/react-dapp/_gitignore +0 -28
  129. package/templates/react-dapp/_npmrc +0 -3
  130. package/templates/react-dapp/logo.png +0 -0
  131. package/templates/react-dapp/public/favicon.ico +0 -0
  132. package/templates/react-dapp/public/robots.txt +0 -3
  133. package/templates/react-dapp/screenshots/.gitkeep +0 -0
  134. package/templates/react-dapp/scripts/build-clean.js +0 -5
  135. package/templates/react-dapp/scripts/bump-version.mjs +0 -33
  136. package/templates/react-dapp/version +0 -1
  137. package/templates/react-gun-dapp/.editorconfig +0 -23
  138. package/templates/react-gun-dapp/.env +0 -2
  139. package/templates/react-gun-dapp/.github/workflows/main.yml +0 -36
  140. package/templates/react-gun-dapp/.github/workflows/pr-title.yml +0 -21
  141. package/templates/react-gun-dapp/.github/workflows/version-check.yml +0 -20
  142. package/templates/react-gun-dapp/.husky/pre-commit +0 -4
  143. package/templates/react-gun-dapp/.prettierrc +0 -9
  144. package/templates/react-gun-dapp/LICENSE +0 -13
  145. package/templates/react-gun-dapp/_gitignore +0 -28
  146. package/templates/react-gun-dapp/_npmrc +0 -3
  147. package/templates/react-gun-dapp/logo.png +0 -0
  148. package/templates/react-gun-dapp/public/favicon.ico +0 -0
  149. package/templates/react-gun-dapp/public/robots.txt +0 -3
  150. package/templates/react-gun-dapp/screenshots/.gitkeep +0 -0
  151. package/templates/react-gun-dapp/scripts/build-clean.js +0 -5
  152. package/templates/react-gun-dapp/scripts/bump-version.mjs +0 -33
  153. package/templates/react-gun-dapp/version +0 -1
  154. package/templates/react-static/.editorconfig +0 -23
  155. package/templates/react-static/.env +0 -2
  156. package/templates/react-static/.github/workflows/main.yml +0 -36
  157. package/templates/react-static/.github/workflows/pr-title.yml +0 -21
  158. package/templates/react-static/.github/workflows/version-check.yml +0 -20
  159. package/templates/react-static/.husky/pre-commit +0 -4
  160. package/templates/react-static/.prettierrc +0 -9
  161. package/templates/react-static/LICENSE +0 -13
  162. package/templates/react-static/_gitignore +0 -28
  163. package/templates/react-static/_npmrc +0 -3
  164. package/templates/react-static/logo.png +0 -0
  165. package/templates/react-static/public/favicon.ico +0 -0
  166. package/templates/react-static/public/robots.txt +0 -3
  167. package/templates/react-static/screenshots/.gitkeep +0 -0
  168. package/templates/react-static/scripts/build-clean.js +0 -5
  169. package/templates/react-static/scripts/bump-version.mjs +0 -33
  170. package/templates/react-static/version +0 -1
  171. package/templates/solidjs-dapp/.editorconfig +0 -23
  172. package/templates/solidjs-dapp/.env +0 -1
  173. package/templates/solidjs-dapp/.github/workflows/main.yml +0 -36
  174. package/templates/solidjs-dapp/.github/workflows/pr-title.yml +0 -21
  175. package/templates/solidjs-dapp/.github/workflows/version-check.yml +0 -20
  176. package/templates/solidjs-dapp/.husky/pre-commit +0 -4
  177. package/templates/solidjs-dapp/.prettierrc +0 -9
  178. package/templates/solidjs-dapp/LICENSE +0 -13
  179. package/templates/solidjs-dapp/_gitignore +0 -28
  180. package/templates/solidjs-dapp/_npmrc +0 -3
  181. package/templates/solidjs-dapp/logo.png +0 -0
  182. package/templates/solidjs-dapp/public/favicon.ico +0 -0
  183. package/templates/solidjs-dapp/public/robots.txt +0 -3
  184. package/templates/solidjs-dapp/screenshots/.gitkeep +0 -0
  185. package/templates/solidjs-dapp/scripts/build-clean.js +0 -5
  186. package/templates/solidjs-dapp/scripts/bump-version.mjs +0 -33
  187. package/templates/solidjs-dapp/version +0 -1
  188. package/templates/solidjs-static/.editorconfig +0 -23
  189. package/templates/solidjs-static/.env +0 -1
  190. package/templates/solidjs-static/.github/workflows/main.yml +0 -36
  191. package/templates/solidjs-static/.github/workflows/pr-title.yml +0 -21
  192. package/templates/solidjs-static/.github/workflows/version-check.yml +0 -20
  193. package/templates/solidjs-static/.husky/pre-commit +0 -4
  194. package/templates/solidjs-static/.prettierrc +0 -9
  195. package/templates/solidjs-static/LICENSE +0 -13
  196. package/templates/solidjs-static/_gitignore +0 -28
  197. package/templates/solidjs-static/_npmrc +0 -3
  198. package/templates/solidjs-static/logo.png +0 -0
  199. package/templates/solidjs-static/public/favicon.ico +0 -0
  200. package/templates/solidjs-static/public/robots.txt +0 -3
  201. package/templates/solidjs-static/screenshots/.gitkeep +0 -0
  202. package/templates/solidjs-static/scripts/build-clean.js +0 -5
  203. package/templates/solidjs-static/scripts/bump-version.mjs +0 -33
  204. package/templates/solidjs-static/version +0 -1
  205. package/templates/svelte-dapp/.editorconfig +0 -23
  206. package/templates/svelte-dapp/.env +0 -1
  207. package/templates/svelte-dapp/.github/workflows/main.yml +0 -36
  208. package/templates/svelte-dapp/.github/workflows/pr-title.yml +0 -21
  209. package/templates/svelte-dapp/.github/workflows/version-check.yml +0 -20
  210. package/templates/svelte-dapp/.husky/pre-commit +0 -4
  211. package/templates/svelte-dapp/.prettierrc +0 -9
  212. package/templates/svelte-dapp/.vscode/extensions.json +0 -3
  213. package/templates/svelte-dapp/LICENSE +0 -13
  214. package/templates/svelte-dapp/_gitignore +0 -28
  215. package/templates/svelte-dapp/_npmrc +0 -3
  216. package/templates/svelte-dapp/logo.png +0 -0
  217. package/templates/svelte-dapp/public/favicon.ico +0 -0
  218. package/templates/svelte-dapp/public/robots.txt +0 -3
  219. package/templates/svelte-dapp/screenshots/.gitkeep +0 -0
  220. package/templates/svelte-dapp/scripts/build-clean.js +0 -5
  221. package/templates/svelte-dapp/scripts/bump-version.mjs +0 -33
  222. package/templates/svelte-dapp/version +0 -1
  223. package/templates/svelte-static/.editorconfig +0 -23
  224. package/templates/svelte-static/.env +0 -1
  225. package/templates/svelte-static/.github/workflows/main.yml +0 -36
  226. package/templates/svelte-static/.github/workflows/pr-title.yml +0 -21
  227. package/templates/svelte-static/.github/workflows/version-check.yml +0 -20
  228. package/templates/svelte-static/.husky/pre-commit +0 -4
  229. package/templates/svelte-static/.prettierrc +0 -9
  230. package/templates/svelte-static/.vscode/extensions.json +0 -3
  231. package/templates/svelte-static/LICENSE +0 -13
  232. package/templates/svelte-static/_gitignore +0 -28
  233. package/templates/svelte-static/_npmrc +0 -3
  234. package/templates/svelte-static/logo.png +0 -0
  235. package/templates/svelte-static/public/favicon.ico +0 -0
  236. package/templates/svelte-static/public/robots.txt +0 -3
  237. package/templates/svelte-static/screenshots/.gitkeep +0 -0
  238. package/templates/svelte-static/scripts/build-clean.js +0 -5
  239. package/templates/svelte-static/scripts/bump-version.mjs +0 -33
  240. package/templates/svelte-static/version +0 -1
  241. package/templates/vue-dapp/.editorconfig +0 -23
  242. package/templates/vue-dapp/.env +0 -1
  243. package/templates/vue-dapp/.github/workflows/main.yml +0 -36
  244. package/templates/vue-dapp/.github/workflows/pr-title.yml +0 -21
  245. package/templates/vue-dapp/.github/workflows/version-check.yml +0 -20
  246. package/templates/vue-dapp/.husky/pre-commit +0 -4
  247. package/templates/vue-dapp/.prettierrc +0 -9
  248. package/templates/vue-dapp/LICENSE +0 -13
  249. package/templates/vue-dapp/_gitignore +0 -28
  250. package/templates/vue-dapp/_npmrc +0 -3
  251. package/templates/vue-dapp/logo.png +0 -0
  252. package/templates/vue-dapp/public/favicon.ico +0 -0
  253. package/templates/vue-dapp/public/robots.txt +0 -3
  254. package/templates/vue-dapp/screenshots/.gitkeep +0 -0
  255. package/templates/vue-dapp/scripts/build-clean.js +0 -5
  256. package/templates/vue-dapp/scripts/bump-version.mjs +0 -33
  257. package/templates/vue-dapp/version +0 -1
  258. package/templates/vue-static/.editorconfig +0 -23
  259. package/templates/vue-static/.env +0 -1
  260. package/templates/vue-static/.github/workflows/main.yml +0 -36
  261. package/templates/vue-static/.github/workflows/pr-title.yml +0 -21
  262. package/templates/vue-static/.github/workflows/version-check.yml +0 -20
  263. package/templates/vue-static/.husky/pre-commit +0 -4
  264. package/templates/vue-static/.prettierrc +0 -9
  265. package/templates/vue-static/LICENSE +0 -13
  266. package/templates/vue-static/_gitignore +0 -28
  267. package/templates/vue-static/_npmrc +0 -3
  268. package/templates/vue-static/logo.png +0 -0
  269. package/templates/vue-static/public/favicon.ico +0 -0
  270. package/templates/vue-static/public/robots.txt +0 -3
  271. package/templates/vue-static/screenshots/.gitkeep +0 -0
  272. package/templates/vue-static/scripts/build-clean.js +0 -5
  273. package/templates/vue-static/scripts/bump-version.mjs +0 -33
  274. package/templates/vue-static/version +0 -1
  275. package/templates/vue2-dapp/.editorconfig +0 -23
  276. package/templates/vue2-dapp/.env +0 -1
  277. package/templates/vue2-dapp/.github/workflows/main.yml +0 -36
  278. package/templates/vue2-dapp/.github/workflows/pr-title.yml +0 -21
  279. package/templates/vue2-dapp/.github/workflows/version-check.yml +0 -20
  280. package/templates/vue2-dapp/.husky/pre-commit +0 -4
  281. package/templates/vue2-dapp/.prettierrc +0 -9
  282. package/templates/vue2-dapp/LICENSE +0 -13
  283. package/templates/vue2-dapp/_gitignore +0 -28
  284. package/templates/vue2-dapp/_npmrc +0 -3
  285. package/templates/vue2-dapp/babel.config.js +0 -3
  286. package/templates/vue2-dapp/jsconfig.json +0 -19
  287. package/templates/vue2-dapp/logo.png +0 -0
  288. package/templates/vue2-dapp/public/favicon.ico +0 -0
  289. package/templates/vue2-dapp/public/robots.txt +0 -3
  290. package/templates/vue2-dapp/screenshots/.gitkeep +0 -0
  291. package/templates/vue2-dapp/scripts/build-clean.js +0 -5
  292. package/templates/vue2-dapp/scripts/bump-version.mjs +0 -33
  293. package/templates/vue2-dapp/version +0 -1
  294. package/templates/vue2-dapp/vue.config.js +0 -25
  295. package/templates/vue2-static/.editorconfig +0 -23
  296. package/templates/vue2-static/.env +0 -1
  297. package/templates/vue2-static/.github/workflows/main.yml +0 -36
  298. package/templates/vue2-static/.github/workflows/pr-title.yml +0 -21
  299. package/templates/vue2-static/.github/workflows/version-check.yml +0 -20
  300. package/templates/vue2-static/.husky/pre-commit +0 -4
  301. package/templates/vue2-static/.prettierrc +0 -9
  302. package/templates/vue2-static/LICENSE +0 -13
  303. package/templates/vue2-static/_gitignore +0 -28
  304. package/templates/vue2-static/_npmrc +0 -3
  305. package/templates/vue2-static/babel.config.js +0 -3
  306. package/templates/vue2-static/jsconfig.json +0 -19
  307. package/templates/vue2-static/logo.png +0 -0
  308. package/templates/vue2-static/public/favicon.ico +0 -0
  309. package/templates/vue2-static/public/robots.txt +0 -3
  310. package/templates/vue2-static/screenshots/.gitkeep +0 -0
  311. package/templates/vue2-static/scripts/build-clean.js +0 -5
  312. package/templates/vue2-static/scripts/bump-version.mjs +0 -33
  313. package/templates/vue2-static/version +0 -1
  314. package/templates/vue2-static/vue.config.js +0 -17
  315. package/templates/website/.editorconfig +0 -23
  316. package/templates/website/.github/workflows/main.yml +0 -36
  317. package/templates/website/.github/workflows/pr-title.yml +0 -21
  318. package/templates/website/.github/workflows/version-check.yml +0 -20
  319. package/templates/website/.prettierrc +0 -9
  320. package/templates/website/LICENSE +0 -13
  321. package/templates/website/_gitignore +0 -28
  322. package/templates/website/_npmrc +0 -3
  323. package/templates/website/logo.png +0 -0
  324. package/templates/website/public/favicon.ico +0 -0
  325. package/templates/website/public/robots.txt +0 -3
  326. package/templates/website/screenshots/.gitkeep +0 -0
  327. package/templates/website/scripts/build-clean.js +0 -6
  328. package/templates/website/scripts/bump-version.mjs +0 -33
  329. package/templates/website/version +0 -1
@@ -1,24 +1,10 @@
1
- import { defineConfig, loadEnv } from 'vite';
1
+ import { defineConfig } from 'vite';
2
2
  import { svelte } from '@sveltejs/vite-plugin-svelte';
3
- import { createHtmlPlugin } from 'vite-plugin-html';
4
3
  import { createBlockletPlugin } from 'vite-plugin-blocklet';
5
4
 
6
5
  // https://vitejs.dev/config/
7
- export default defineConfig(async ({ mode }) => {
8
- const envMap = loadEnv(mode, process.cwd(), '');
9
-
6
+ export default defineConfig(() => {
10
7
  return {
11
- plugins: [
12
- svelte(),
13
- createHtmlPlugin({
14
- minify: true,
15
- inject: {
16
- data: {
17
- title: envMap.APP_TITLE,
18
- },
19
- },
20
- }),
21
- createBlockletPlugin(),
22
- ],
8
+ plugins: [svelte(), createBlockletPlugin()],
23
9
  };
24
10
  });
@@ -0,0 +1,4 @@
1
+ const { setupClient } = require('vite-plugin-blocklet');
2
+ const { server, app } = require('./index');
3
+
4
+ setupClient(app, server);
@@ -16,36 +16,34 @@ app.set('trust proxy', true);
16
16
  app.use(cookieParser());
17
17
  app.use(express.json({ limit: '1 mb' }));
18
18
  app.use(express.urlencoded({ extended: true, limit: '1 mb' }));
19
+ app.use(cors());
19
20
 
20
21
  const router = express.Router();
21
22
  router.use('/api', require('./routes'));
23
+ app.use(router);
22
24
 
23
- const isDevelopment = process.env.NODE_ENV === 'development';
24
25
  const isProduction = process.env.NODE_ENV === 'production' || process.env.ABT_NODE_SERVICE_ENV === 'production';
25
26
 
26
27
  if (isProduction) {
27
- app.use(cors());
28
+ const staticDir = path.resolve(__dirname, '../dist');
28
29
  app.use(compression());
29
-
30
- const staticDir = path.resolve(process.env.BLOCKLET_APP_DIR, 'dist');
31
30
  app.use(express.static(staticDir, { maxAge: '30d', index: false }));
32
- app.use(router);
33
31
  app.use(fallback('index.html', { root: staticDir }));
34
32
 
35
- app.use((req, res) => {
36
- res.status(404).send('404 NOT FOUND');
37
- });
38
33
  app.use((err, req, res) => {
39
34
  logger.error(err.stack);
40
35
  res.status(500).send('Something broke!');
41
36
  });
42
- } else {
43
- app.use(router);
44
37
  }
45
38
 
46
- const port = (isDevelopment ? parseInt(process.env.API_PORT, 10) : parseInt(process.env.BLOCKLET_PORT, 10)) || 3030;
39
+ const port = parseInt(process.env.BLOCKLET_PORT, 10);
47
40
 
48
- app.listen(port, (err) => {
41
+ const server = app.listen(port, (err) => {
49
42
  if (err) throw err;
50
43
  logger.info(`> ${name} v${version} ready on ${port}`);
51
44
  });
45
+
46
+ module.exports = {
47
+ app,
48
+ server,
49
+ };
@@ -6,7 +6,6 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
7
7
  <meta name="theme-color" content="#4F6AF5" />
8
8
  <meta name="description" content="Web site created using create-blocklet" />
9
- <title><%- title %></title>
10
9
  </head>
11
10
  <body>
12
11
  <noscript>You need to enable JavaScript to run this app.</noscript>
@@ -3,10 +3,7 @@
3
3
  "version": "0.1.0",
4
4
  "scripts": {
5
5
  "dev": "blocklet dev",
6
- "serve": "vite preview",
7
- "start": "npm-run-all --parallel start:*",
8
- "start:client": "vite --host",
9
- "start:api": "NODE_ENV=development nodemon api/index.js -w api",
6
+ "start": "cross-env NODE_ENV=development nodemon api/dev.js -w api",
10
7
  "clean": "node scripts/build-clean.js",
11
8
  "bundle": "npm run bundle:client && npm run bundle:api",
12
9
  "bundle:client": "vite build",
@@ -21,12 +18,12 @@
21
18
  "bump-version": "zx scripts/bump-version.mjs"
22
19
  },
23
20
  "dependencies": {
24
- "@arcblock/did-auth": "^1.17.23",
21
+ "@arcblock/did-auth": "^1.18.6",
25
22
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
26
- "@blocklet/sdk": "^1.8.30",
27
- "@ocap/client": "^1.17.23",
28
- "@ocap/mcrypto": "^1.17.23",
29
- "@ocap/wallet": "^1.17.23",
23
+ "@blocklet/sdk": "^1.8.33",
24
+ "@ocap/client": "^1.18.6",
25
+ "@ocap/mcrypto": "^1.18.6",
26
+ "@ocap/wallet": "^1.18.6",
30
27
  "axios": "^0.27.2",
31
28
  "compression": "^1.7.4",
32
29
  "cookie-parser": "^1.4.6",
@@ -35,25 +32,25 @@
35
32
  "express": "^4.18.2",
36
33
  "express-async-errors": "^3.1.1",
37
34
  "express-history-api-fallback": "^2.2.1",
38
- "vite-plugin-html": "^3.2.0",
39
35
  "vue": "^3.2.41"
40
36
  },
41
37
  "devDependencies": {
42
- "@vitejs/plugin-vue": "^3.1.2",
43
- "eslint": "^8.25.0",
38
+ "@vitejs/plugin-vue": "^3.2.0",
39
+ "bumpp": "^8.2.1",
40
+ "cross-env": "^7.0.3",
41
+ "eslint": "^8.26.0",
44
42
  "eslint-config-prettier": "^8.5.0",
45
43
  "eslint-plugin-prettier": "^4.2.1",
46
- "eslint-plugin-vue": "^9.6.0",
44
+ "eslint-plugin-vue": "^9.7.0",
47
45
  "husky": "^8.0.1",
48
46
  "lint-staged": "^12.5.0",
49
47
  "nodemon": "^2.0.20",
50
48
  "npm-run-all": "^4.1.5",
51
49
  "prettier": "^2.7.1",
52
- "vite": "^3.1.8",
53
- "vite-plugin-blocklet": "^0.4.81",
54
- "zx": "^7.1.1",
55
50
  "rimraf": "^3.0.2",
56
- "bumpp": "^8.2.1"
51
+ "vite": "^3.2.2",
52
+ "vite-plugin-blocklet": "^0.5.1",
53
+ "zx": "^7.1.1"
57
54
  },
58
55
  "lint-staged": {
59
56
  "*.{mjs,js,vue}": [
@@ -1,34 +1,10 @@
1
- import { defineConfig, loadEnv } from 'vite';
1
+ import { defineConfig } from 'vite';
2
2
  import vue from '@vitejs/plugin-vue';
3
- import { createHtmlPlugin } from 'vite-plugin-html';
4
3
  import { createBlockletPlugin } from 'vite-plugin-blocklet';
5
4
 
6
5
  // https://vitejs.dev/config/
7
- export default defineConfig(async ({ mode }) => {
8
- const envMap = loadEnv(mode, process.cwd(), '');
9
- const apiPort = envMap.API_PORT || 3030;
10
- const apiPrefix = `${process.env.BLOCKLET_DEV_MOUNT_POINT || ''}/api`;
11
-
6
+ export default defineConfig(() => {
12
7
  return {
13
- plugins: [
14
- vue(),
15
- createHtmlPlugin({
16
- minify: true,
17
- inject: {
18
- data: {
19
- title: envMap.APP_TITLE,
20
- },
21
- },
22
- }),
23
- createBlockletPlugin(),
24
- ],
25
- server: {
26
- proxy: {
27
- [apiPrefix]: {
28
- target: `http://127.0.0.1:${apiPort}`,
29
- rewrite: (path) => path.replace(apiPrefix, '/api'), // rewrite path when blocklet dev
30
- },
31
- },
32
- },
8
+ plugins: [vue(), createBlockletPlugin()],
33
9
  };
34
10
  });
@@ -6,7 +6,6 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
7
7
  <meta name="theme-color" content="#4F6AF5" />
8
8
  <meta name="description" content="Web site created using create-blocklet" />
9
- <title><%- title %></title>
10
9
  </head>
11
10
  <body>
12
11
  <noscript>You need to enable JavaScript to run this app.</noscript>
@@ -20,20 +20,19 @@
20
20
  "vue": "^3.2.41"
21
21
  },
22
22
  "devDependencies": {
23
- "@vitejs/plugin-vue": "^3.1.2",
24
- "eslint": "^8.25.0",
23
+ "@vitejs/plugin-vue": "^3.2.0",
24
+ "bumpp": "^8.2.1",
25
+ "eslint": "^8.26.0",
25
26
  "eslint-config-prettier": "^8.5.0",
26
27
  "eslint-plugin-prettier": "^4.2.1",
27
- "eslint-plugin-vue": "^9.6.0",
28
+ "eslint-plugin-vue": "^9.7.0",
28
29
  "husky": "^8.0.1",
29
30
  "lint-staged": "^12.5.0",
30
31
  "prettier": "^2.7.1",
31
- "vite": "^3.1.8",
32
- "vite-plugin-blocklet": "^0.4.81",
33
- "vite-plugin-html": "^3.2.0",
34
- "zx": "^7.1.1",
35
32
  "rimraf": "^3.0.2",
36
- "bumpp": "^8.2.1"
33
+ "vite": "^3.2.2",
34
+ "vite-plugin-blocklet": "^0.5.1",
35
+ "zx": "^7.1.1"
37
36
  },
38
37
  "lint-staged": {
39
38
  "*.{mjs,js,vue}": [
@@ -1,24 +1,10 @@
1
- import { defineConfig, loadEnv } from 'vite';
1
+ import { defineConfig } from 'vite';
2
2
  import vue from '@vitejs/plugin-vue';
3
- import { createHtmlPlugin } from 'vite-plugin-html';
4
3
  import { createBlockletPlugin } from 'vite-plugin-blocklet';
5
4
 
6
5
  // https://vitejs.dev/config/
7
- export default defineConfig(async ({ mode }) => {
8
- const envMap = loadEnv(mode, process.cwd(), '');
9
-
6
+ export default defineConfig(() => {
10
7
  return {
11
- plugins: [
12
- vue(),
13
- createHtmlPlugin({
14
- minify: true,
15
- inject: {
16
- data: {
17
- title: envMap.APP_TITLE,
18
- },
19
- },
20
- }),
21
- createBlockletPlugin(),
22
- ],
8
+ plugins: [vue(), createBlockletPlugin()],
23
9
  };
24
10
  });
@@ -4,9 +4,6 @@ module.exports = {
4
4
  node: true,
5
5
  },
6
6
  extends: ['plugin:vue/essential', 'eslint:recommended', 'plugin:prettier/recommended'],
7
- parserOptions: {
8
- parser: '@babel/eslint-parser',
9
- },
10
7
  rules: {
11
8
  'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
12
9
  'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
@@ -0,0 +1,4 @@
1
+ const { setupClient } = require('vite-plugin-blocklet');
2
+ const { server, app } = require('./index');
3
+
4
+ setupClient(app, server);
@@ -16,36 +16,34 @@ app.set('trust proxy', true);
16
16
  app.use(cookieParser());
17
17
  app.use(express.json({ limit: '1 mb' }));
18
18
  app.use(express.urlencoded({ extended: true, limit: '1 mb' }));
19
+ app.use(cors());
19
20
 
20
21
  const router = express.Router();
21
22
  router.use('/api', require('./routes'));
23
+ app.use(router);
22
24
 
23
- const isDevelopment = process.env.NODE_ENV === 'development';
24
25
  const isProduction = process.env.NODE_ENV === 'production' || process.env.ABT_NODE_SERVICE_ENV === 'production';
25
26
 
26
27
  if (isProduction) {
27
- app.use(cors());
28
+ const staticDir = path.resolve(__dirname, '../dist');
28
29
  app.use(compression());
29
-
30
- const staticDir = path.resolve(process.env.BLOCKLET_APP_DIR, 'dist');
31
30
  app.use(express.static(staticDir, { maxAge: '30d', index: false }));
32
- app.use(router);
33
31
  app.use(fallback('index.html', { root: staticDir }));
34
32
 
35
- app.use((req, res) => {
36
- res.status(404).send('404 NOT FOUND');
37
- });
38
33
  app.use((err, req, res) => {
39
34
  logger.error(err.stack);
40
35
  res.status(500).send('Something broke!');
41
36
  });
42
- } else {
43
- app.use(router);
44
37
  }
45
38
 
46
- const port = (isDevelopment ? parseInt(process.env.API_PORT, 10) : parseInt(process.env.BLOCKLET_PORT, 10)) || 3030;
39
+ const port = parseInt(process.env.BLOCKLET_PORT, 10);
47
40
 
48
- app.listen(port, (err) => {
41
+ const server = app.listen(port, (err) => {
49
42
  if (err) throw err;
50
43
  logger.info(`> ${name} v${version} ready on ${port}`);
51
44
  });
45
+
46
+ module.exports = {
47
+ app,
48
+ server,
49
+ };
@@ -1,17 +1,15 @@
1
1
  <!DOCTYPE html>
2
- <html lang="">
2
+ <html lang="en">
3
3
  <head>
4
- <meta charset="utf-8" />
5
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" href="/favicon.ico" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
7
7
  <meta name="theme-color" content="#4F6AF5" />
8
8
  <meta name="description" content="Web site created using create-blocklet" />
9
- <title><%= htmlWebpackPlugin.options.title %></title>
10
- <script src="__blocklet__.js"></script>
11
9
  </head>
12
10
  <body>
13
11
  <noscript>You need to enable JavaScript to run this app.</noscript>
14
12
  <div id="app"></div>
15
- <!-- built files will be auto injected -->
13
+ <script type="module" src="/src/main.js"></script>
16
14
  </body>
17
15
  </html>
@@ -1,32 +1,29 @@
1
1
  {
2
2
  "name": "template-vue2",
3
3
  "version": "0.1.0",
4
- "private": true,
5
4
  "scripts": {
6
5
  "dev": "blocklet dev",
7
- "lint": "eslint src api --ext .mjs,.js,.vue",
8
- "lint:fix": "npm run lint -- --fix",
9
- "start": "npm-run-all --parallel start:*",
10
- "start:client": "vue-cli-service serve",
11
- "start:api": "NODE_ENV=development nodemon api/index.js -w api",
6
+ "start": "cross-env NODE_ENV=development nodemon api/dev.js -w api",
12
7
  "clean": "node scripts/build-clean.js",
13
8
  "bundle": "npm run bundle:client && npm run bundle:api",
14
- "bundle:client": "PUBLIC_PATH=/.blocklet/proxy/<%= did %> vue-cli-service build",
9
+ "bundle:client": "vite build",
15
10
  "bundle:api": "npm run clean && blocklet bundle --zip --create-release",
16
11
  "deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
17
12
  "upload": "npm run bundle && blocklet upload .blocklet/release/blocklet.json",
13
+ "lint": "eslint src api --ext .mjs,.js,.vue",
14
+ "lint:fix": "npm run lint -- --fix",
18
15
  "deploy:child": "npm run bundle && blocklet deploy .blocklet/bundle --app-did=<%= did %>",
19
16
  "dev:child": "blocklet dev --component --app-did=<%= did %>",
20
17
  "prepare": "husky install",
21
18
  "bump-version": "zx scripts/bump-version.mjs"
22
19
  },
23
20
  "dependencies": {
24
- "@arcblock/did-auth": "^1.17.23",
21
+ "@arcblock/did-auth": "^1.18.6",
25
22
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
26
- "@blocklet/sdk": "^1.8.30",
27
- "@ocap/client": "^1.17.23",
28
- "@ocap/mcrypto": "^1.17.23",
29
- "@ocap/wallet": "^1.17.23",
23
+ "@blocklet/sdk": "^1.8.33",
24
+ "@ocap/client": "^1.18.6",
25
+ "@ocap/mcrypto": "^1.18.6",
26
+ "@ocap/wallet": "^1.18.6",
30
27
  "axios": "^0.27.2",
31
28
  "compression": "^1.7.4",
32
29
  "cookie-parser": "^1.4.6",
@@ -35,27 +32,25 @@
35
32
  "express": "^4.18.2",
36
33
  "express-async-errors": "^3.1.1",
37
34
  "express-history-api-fallback": "^2.2.1",
38
- "vue": "~2.6.14"
35
+ "vue": "^2.7.13"
39
36
  },
40
37
  "devDependencies": {
41
- "@babel/core": "^7.19.3",
42
- "@babel/eslint-parser": "^7.19.1",
43
- "@vue/cli-plugin-babel": "~5.0.8",
44
- "@vue/cli-plugin-eslint": "~5.0.8",
45
- "@vue/cli-service": "~5.0.8",
46
- "core-js": "^3.25.5",
47
- "eslint": "^8.25.0",
38
+ "@vitejs/plugin-vue2": "^2.0.0",
39
+ "bumpp": "^8.2.1",
40
+ "cross-env": "^7.0.3",
41
+ "eslint": "^8.26.0",
48
42
  "eslint-config-prettier": "^8.5.0",
49
43
  "eslint-plugin-prettier": "^4.2.1",
50
- "eslint-plugin-vue": "^9.6.0",
44
+ "eslint-plugin-vue": "^9.7.0",
51
45
  "husky": "^8.0.1",
52
46
  "lint-staged": "^12.5.0",
53
47
  "nodemon": "^2.0.20",
54
48
  "npm-run-all": "^4.1.5",
55
- "vue-template-compiler": "~2.6.14",
56
- "zx": "^7.1.1",
49
+ "prettier": "^2.7.1",
57
50
  "rimraf": "^3.0.2",
58
- "bumpp": "^8.2.1"
51
+ "vite": "^3.2.2",
52
+ "vite-plugin-blocklet": "^0.5.1",
53
+ "zx": "^7.1.1"
59
54
  },
60
55
  "lint-staged": {
61
56
  "*.{mjs,js,vue}": [
@@ -0,0 +1,10 @@
1
+ import { defineConfig } from 'vite';
2
+ import vue from '@vitejs/plugin-vue2';
3
+ import { createBlockletPlugin } from 'vite-plugin-blocklet';
4
+
5
+ // https://vitejs.dev/config/
6
+ export default defineConfig(() => {
7
+ return {
8
+ plugins: [vue(), createBlockletPlugin()],
9
+ };
10
+ });
@@ -4,9 +4,6 @@ module.exports = {
4
4
  node: true,
5
5
  },
6
6
  extends: ['plugin:vue/essential', 'eslint:recommended', 'plugin:prettier/recommended'],
7
- parserOptions: {
8
- parser: '@babel/eslint-parser',
9
- },
10
7
  rules: {
11
8
  'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
12
9
  'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
@@ -1,17 +1,15 @@
1
1
  <!DOCTYPE html>
2
- <html lang="">
2
+ <html lang="en">
3
3
  <head>
4
- <meta charset="utf-8" />
5
- <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" href="/favicon.ico" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
7
7
  <meta name="theme-color" content="#4F6AF5" />
8
8
  <meta name="description" content="Web site created using create-blocklet" />
9
- <title><%= htmlWebpackPlugin.options.title %></title>
10
- <script src="__blocklet__.js"></script>
11
9
  </head>
12
10
  <body>
13
11
  <noscript>You need to enable JavaScript to run this app.</noscript>
14
12
  <div id="app"></div>
15
- <!-- built files will be auto injected -->
13
+ <script type="module" src="/src/main.js"></script>
16
14
  </body>
17
15
  </html>
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "template-vue2",
3
3
  "version": "0.1.0",
4
- "private": true,
5
4
  "scripts": {
6
- "dev": "vue-cli-service serve",
5
+ "dev": "blocklet dev",
6
+ "start": "vite --host",
7
7
  "lint": "eslint src --ext .mjs,.js,.vue",
8
8
  "lint:fix": "npm run lint -- --fix",
9
- "start": "vue-cli-service serve",
9
+ "serve": "vite preview",
10
10
  "clean": "node scripts/build-clean.js",
11
- "bundle": "npm run clean && PUBLIC_PATH=/.blocklet/proxy/<%= did %> vue-cli-service build && blocklet bundle --zip --create-release",
11
+ "bundle": "npm run clean && vite build && blocklet bundle --zip --create-release",
12
12
  "deploy": "npm run bundle && blocklet deploy .blocklet/bundle",
13
13
  "upload": "npm run bundle && blocklet upload .blocklet/release/blocklet.json",
14
14
  "deploy:child": "npm run bundle && blocklet deploy .blocklet/bundle --app-did=<%= did %>",
@@ -17,25 +17,22 @@
17
17
  "bump-version": "zx scripts/bump-version.mjs"
18
18
  },
19
19
  "dependencies": {
20
- "vue": "~2.6.14"
20
+ "vue": "^2.7.13"
21
21
  },
22
22
  "devDependencies": {
23
- "@babel/core": "^7.19.3",
24
- "@babel/eslint-parser": "^7.19.1",
25
- "@vue/cli-plugin-babel": "~5.0.8",
26
- "@vue/cli-plugin-eslint": "~5.0.8",
27
- "@vue/cli-service": "~5.0.8",
28
- "core-js": "^3.25.5",
29
- "eslint": "^8.25.0",
23
+ "@vitejs/plugin-vue2": "^2.0.0",
24
+ "bumpp": "^8.2.1",
25
+ "eslint": "^8.26.0",
30
26
  "eslint-config-prettier": "^8.5.0",
31
27
  "eslint-plugin-prettier": "^4.2.1",
32
- "eslint-plugin-vue": "^9.6.0",
28
+ "eslint-plugin-vue": "^9.7.0",
33
29
  "husky": "^8.0.1",
34
30
  "lint-staged": "^12.5.0",
35
- "vue-template-compiler": "~2.6.14",
36
- "zx": "^7.1.1",
31
+ "prettier": "^2.7.1",
37
32
  "rimraf": "^3.0.2",
38
- "bumpp": "^8.2.1"
33
+ "vite": "^3.2.2",
34
+ "vite-plugin-blocklet": "^0.5.1",
35
+ "zx": "^7.1.1"
39
36
  },
40
37
  "lint-staged": {
41
38
  "*.{mjs,js,vue}": [
@@ -0,0 +1,10 @@
1
+ import { defineConfig } from 'vite';
2
+ import vue from '@vitejs/plugin-vue2';
3
+ import { createBlockletPlugin } from 'vite-plugin-blocklet';
4
+
5
+ // https://vitejs.dev/config/
6
+ export default defineConfig(() => {
7
+ return {
8
+ plugins: [vue(), createBlockletPlugin()],
9
+ };
10
+ });
@@ -15,9 +15,9 @@
15
15
  "bump-version": "zx scripts/bump-version.mjs"
16
16
  },
17
17
  "dependencies": {
18
- "@xmark/cli": "^2.4.83",
19
- "zx": "^7.1.1",
18
+ "@xmark/cli": "^2.4.85",
19
+ "bumpp": "^8.2.1",
20
20
  "rimraf": "^3.0.2",
21
- "bumpp": "^8.2.1"
21
+ "zx": "^7.1.1"
22
22
  }
23
23
  }
@@ -1,6 +0,0 @@
1
- const rimraf = require('rimraf');
2
-
3
- console.log('clean .blocklet folder && node_modules/.vite');
4
- rimraf.sync('.blocklet');
5
- rimraf.sync('node_modules/.vite');
6
- console.log('clean .blocklet folder && node_modules/.vite done!');
@@ -1,23 +0,0 @@
1
- # For more information about the properties used in
2
- # this file, please see the EditorConfig documentation:
3
- # http://editorconfig.org/
4
- #
5
- # Sensible EditorConfig defaults
6
- # https://gist.github.com/matijs/662bf45dd4ec37b3a068
7
- root = true
8
-
9
- [*]
10
- charset = utf-8
11
- end_of_line = lf
12
- indent_size = 2
13
- indent_style = space
14
- insert_final_newline = true
15
- trim_trailing_whitespace = true
16
-
17
- # Make sure package.json always uses 2 spaces to indent
18
- [{package.json}]
19
- indent_size = 2
20
- indent_style = space
21
-
22
- [{makefile, Makefile}]
23
- indent_style = tab
@@ -1,36 +0,0 @@
1
- name: Deploy
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- Deploy:
10
- runs-on: ubuntu-latest
11
-
12
- if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
13
-
14
- steps:
15
- - name: Checkout repo
16
- uses: actions/checkout@v2
17
-
18
- - name: Set yarn cache
19
- uses: c-hive/gha-yarn-cache@v2
20
-
21
- - name: Install dependencies
22
- run: yarn
23
-
24
- - name: Blocklet workflow
25
- uses: blocklet/action-workflow@v1
26
- with:
27
- skip-upload: false
28
- skip-deploy: false
29
- bundle-command: yarn bundle
30
- store-endpoint: ${{ secrets.STORE_ENDPOINT }}
31
- store-access-token: ${{ secrets.STORE_ACCESS_TOKEN }}
32
- server-endpoint: ${{ secrets.SERVER_ENDPOINT }}
33
- server-access-key: ${{ secrets.SERVER_ACCESS_KEY }}
34
- server-access-secret: ${{ secrets.SERVER_ACCESS_SECRET }}
35
- slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
36
- github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -1,21 +0,0 @@
1
- name: 'Lint PR Title'
2
-
3
- on:
4
- pull_request:
5
- types:
6
- - opened
7
- - reopened
8
- - edited
9
- - synchronize
10
- branches:
11
- - main
12
- - dev
13
- - master
14
-
15
- jobs:
16
- lint-title:
17
- runs-on: ubuntu-latest
18
- steps:
19
- - uses: ArcBlock/action-lint-pull-request-title@master
20
- env:
21
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}