create-rsbuild 0.0.0-next-20231108034054 → 0.0.0-next-20231207110454

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 (78) hide show
  1. package/CHANGELOG.md +68 -1
  2. package/dist/index.js +21 -2
  3. package/package.json +4 -3
  4. package/template-lit-js/package.json +14 -0
  5. package/template-lit-js/rsbuild.config.mjs +7 -0
  6. package/template-lit-js/src/index.css +6 -0
  7. package/template-lit-js/src/index.html +5 -0
  8. package/template-lit-js/src/index.js +4 -0
  9. package/template-lit-js/src/my-element.js +34 -0
  10. package/template-lit-ts/package.json +15 -0
  11. package/template-lit-ts/rsbuild.config.ts +7 -0
  12. package/template-lit-ts/src/env.d.ts +1 -0
  13. package/template-lit-ts/src/index.css +6 -0
  14. package/template-lit-ts/src/index.html +5 -0
  15. package/template-lit-ts/src/index.ts +4 -0
  16. package/template-lit-ts/src/my-element.ts +34 -0
  17. package/template-lit-ts/tsconfig.json +13 -0
  18. package/template-react-js/package.json +1 -1
  19. package/template-react-js/src/App.css +26 -0
  20. package/template-react-js/src/App.jsx +6 -16
  21. package/template-react-js/src/index.jsx +0 -1
  22. package/template-react-ts/package.json +2 -2
  23. package/template-react-ts/src/App.css +26 -0
  24. package/template-react-ts/src/App.tsx +6 -16
  25. package/template-react-ts/src/env.d.ts +1 -0
  26. package/template-react-ts/src/index.tsx +0 -1
  27. package/template-solid-js/package.json +18 -0
  28. package/template-solid-js/rsbuild.config.mjs +7 -0
  29. package/template-solid-js/src/App.css +26 -0
  30. package/template-solid-js/src/App.jsx +12 -0
  31. package/template-solid-js/src/index.jsx +4 -0
  32. package/template-solid-ts/package.json +19 -0
  33. package/template-solid-ts/rsbuild.config.ts +7 -0
  34. package/template-solid-ts/src/App.css +26 -0
  35. package/template-solid-ts/src/App.tsx +12 -0
  36. package/template-solid-ts/src/env.d.ts +1 -0
  37. package/template-solid-ts/src/index.tsx +4 -0
  38. package/template-solid-ts/tsconfig.json +15 -0
  39. package/template-svelte-js/package.json +1 -1
  40. package/template-svelte-js/src/App.svelte +21 -26
  41. package/template-svelte-js/src/index.css +6 -0
  42. package/template-svelte-js/src/index.js +1 -2
  43. package/template-svelte-ts/package.json +2 -2
  44. package/template-svelte-ts/src/App.svelte +21 -26
  45. package/template-svelte-ts/src/env.d.ts +2 -0
  46. package/template-svelte-ts/src/index.css +6 -0
  47. package/template-svelte-ts/src/index.ts +1 -2
  48. package/template-vanilla-js/package.json +13 -0
  49. package/template-vanilla-js/rsbuild.config.mjs +3 -0
  50. package/template-vanilla-js/src/index.css +26 -0
  51. package/template-vanilla-js/src/index.js +8 -0
  52. package/template-vanilla-ts/package.json +14 -0
  53. package/template-vanilla-ts/rsbuild.config.ts +3 -0
  54. package/template-vanilla-ts/src/index.css +26 -0
  55. package/template-vanilla-ts/src/index.ts +8 -0
  56. package/template-vanilla-ts/tsconfig.json +13 -0
  57. package/template-vue2-js/package.json +1 -1
  58. package/template-vue2-js/src/App.vue +21 -20
  59. package/template-vue2-js/src/index.css +3 -38
  60. package/template-vue2-js/src/index.js +1 -1
  61. package/template-vue2-ts/package.json +2 -2
  62. package/template-vue2-ts/src/App.vue +20 -21
  63. package/template-vue2-ts/src/env.d.ts +2 -0
  64. package/template-vue2-ts/src/index.css +3 -38
  65. package/template-vue2-ts/src/index.ts +1 -1
  66. package/template-vue3-js/package.json +1 -1
  67. package/template-vue3-js/src/App.vue +21 -22
  68. package/template-vue3-js/src/index.css +3 -38
  69. package/template-vue3-js/src/index.js +1 -1
  70. package/template-vue3-ts/package.json +2 -2
  71. package/template-vue3-ts/src/App.vue +21 -16
  72. package/template-vue3-ts/src/env.d.ts +2 -0
  73. package/template-vue3-ts/src/index.css +3 -38
  74. package/template-vue3-ts/src/index.ts +1 -1
  75. package/template-react-js/src/index.css +0 -41
  76. package/template-react-ts/src/index.css +0 -41
  77. package/template-svelte-js/src/global.css +0 -68
  78. package/template-svelte-ts/src/global.css +0 -68
@@ -1,33 +1,28 @@
1
- <script>
2
- export let name;
3
- </script>
4
-
5
1
  <main>
6
- <h1>Hello {name}!</h1>
7
- <p>
8
- Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn
9
- how to build Svelte apps.
10
- </p>
2
+ <div class="content">
3
+ <h1>Rsbuild with Svelte</h1>
4
+ <p>Start building amazing things with Rsbuild.</p>
5
+ </div>
11
6
  </main>
12
7
 
13
8
  <style>
14
- main {
15
- text-align: center;
16
- padding: 1em;
17
- max-width: 240px;
18
- margin: 0 auto;
19
- }
9
+ .content {
10
+ display: flex;
11
+ min-height: 100vh;
12
+ line-height: 1.1;
13
+ text-align: center;
14
+ flex-direction: column;
15
+ justify-content: center;
16
+ }
20
17
 
21
- @media (min-width: 640px) {
22
- main {
23
- max-width: none;
24
- }
25
- }
18
+ .content h1 {
19
+ font-size: 3.6rem;
20
+ font-weight: 700;
21
+ }
26
22
 
27
- h1 {
28
- color: #ff3e00;
29
- text-transform: uppercase;
30
- font-size: 4em;
31
- font-weight: 100;
32
- }
23
+ .content p {
24
+ font-size: 1.2rem;
25
+ font-weight: 400;
26
+ opacity: 0.5;
27
+ }
33
28
  </style>
@@ -0,0 +1,6 @@
1
+ body {
2
+ margin: 0;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
6
+ }
@@ -1,5 +1,4 @@
1
- import './global.css';
2
-
1
+ import './index.css';
3
2
  import App from './App.svelte';
4
3
 
5
4
  const app = new App({
@@ -3,7 +3,7 @@
3
3
  "private": true,
4
4
  "version": "1.0.0",
5
5
  "scripts": {
6
- "dev": "rsbuild dev",
6
+ "dev": "rsbuild dev --open",
7
7
  "build": "rsbuild build",
8
8
  "preview": "rsbuild preview"
9
9
  },
@@ -13,6 +13,6 @@
13
13
  "devDependencies": {
14
14
  "@rsbuild/core": "workspace:*",
15
15
  "@rsbuild/plugin-svelte": "workspace:*",
16
- "typescript": "^5.2.2"
16
+ "typescript": "^5.3.0"
17
17
  }
18
18
  }
@@ -1,33 +1,28 @@
1
- <script>
2
- export let name;
3
- </script>
4
-
5
1
  <main>
6
- <h1>Hello {name}!</h1>
7
- <p>
8
- Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn
9
- how to build Svelte apps.
10
- </p>
2
+ <div class="content">
3
+ <h1>Rsbuild with Svelte</h1>
4
+ <p>Start building amazing things with Rsbuild.</p>
5
+ </div>
11
6
  </main>
12
7
 
13
8
  <style>
14
- main {
15
- text-align: center;
16
- padding: 1em;
17
- max-width: 240px;
18
- margin: 0 auto;
19
- }
9
+ .content {
10
+ display: flex;
11
+ min-height: 100vh;
12
+ line-height: 1.1;
13
+ text-align: center;
14
+ flex-direction: column;
15
+ justify-content: center;
16
+ }
20
17
 
21
- @media (min-width: 640px) {
22
- main {
23
- max-width: none;
24
- }
25
- }
18
+ .content h1 {
19
+ font-size: 3.6rem;
20
+ font-weight: 700;
21
+ }
26
22
 
27
- h1 {
28
- color: #ff3e00;
29
- text-transform: uppercase;
30
- font-size: 4em;
31
- font-weight: 100;
32
- }
23
+ .content p {
24
+ font-size: 1.2rem;
25
+ font-weight: 400;
26
+ opacity: 0.5;
27
+ }
33
28
  </style>
@@ -0,0 +1,2 @@
1
+ /// <reference types="@rsbuild/core/types" />
2
+ /// <reference types="svelte" />
@@ -0,0 +1,6 @@
1
+ body {
2
+ margin: 0;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
6
+ }
@@ -1,5 +1,4 @@
1
- import './global.css';
2
-
1
+ import './index.css';
3
2
  import App from './App.svelte';
4
3
 
5
4
  const app = new App({
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "rsbuild-vanilla-js",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "dev": "rsbuild dev --open",
7
+ "build": "rsbuild build",
8
+ "preview": "rsbuild preview"
9
+ },
10
+ "devDependencies": {
11
+ "@rsbuild/core": "workspace:*"
12
+ }
13
+ }
@@ -0,0 +1,3 @@
1
+ import { defineConfig } from '@rsbuild/core';
2
+
3
+ export default defineConfig({});
@@ -0,0 +1,26 @@
1
+ body {
2
+ margin: 0;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
6
+ }
7
+
8
+ .content {
9
+ display: flex;
10
+ min-height: 100vh;
11
+ line-height: 1.1;
12
+ text-align: center;
13
+ flex-direction: column;
14
+ justify-content: center;
15
+ }
16
+
17
+ .content h1 {
18
+ font-size: 3.6rem;
19
+ font-weight: 700;
20
+ }
21
+
22
+ .content p {
23
+ font-size: 1.2rem;
24
+ font-weight: 400;
25
+ opacity: 0.5;
26
+ }
@@ -0,0 +1,8 @@
1
+ import './index.css';
2
+
3
+ document.querySelector('#root').innerHTML = `
4
+ <div class="content">
5
+ <h1>Vanilla Rsbuild</h1>
6
+ <p>Start building amazing things with Rsbuild.</p>
7
+ </div>
8
+ `;
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "rsbuild-vanilla-ts",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "dev": "rsbuild dev --open",
7
+ "build": "rsbuild build",
8
+ "preview": "rsbuild preview"
9
+ },
10
+ "devDependencies": {
11
+ "@rsbuild/core": "workspace:*",
12
+ "typescript": "^5.3.0"
13
+ }
14
+ }
@@ -0,0 +1,3 @@
1
+ import { defineConfig } from '@rsbuild/core';
2
+
3
+ export default defineConfig({});
@@ -0,0 +1,26 @@
1
+ body {
2
+ margin: 0;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
6
+ }
7
+
8
+ .content {
9
+ display: flex;
10
+ min-height: 100vh;
11
+ line-height: 1.1;
12
+ text-align: center;
13
+ flex-direction: column;
14
+ justify-content: center;
15
+ }
16
+
17
+ .content h1 {
18
+ font-size: 3.6rem;
19
+ font-weight: 700;
20
+ }
21
+
22
+ .content p {
23
+ font-size: 1.2rem;
24
+ font-weight: 400;
25
+ opacity: 0.5;
26
+ }
@@ -0,0 +1,8 @@
1
+ import './index.css';
2
+
3
+ document.querySelector('#root')!.innerHTML = `
4
+ <div class="content">
5
+ <h1>Vanilla Rsbuild</h1>
6
+ <p>Start building amazing things with Rsbuild.</p>
7
+ </div>
8
+ `;
@@ -0,0 +1,13 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "lib": ["DOM", "ES2020"],
5
+ "module": "ESNext",
6
+ "strict": true,
7
+ "skipLibCheck": true,
8
+ "isolatedModules": true,
9
+ "resolveJsonModule": true,
10
+ "moduleResolution": "bundler"
11
+ },
12
+ "include": ["src"]
13
+ }
@@ -3,7 +3,7 @@
3
3
  "private": true,
4
4
  "version": "1.0.0",
5
5
  "scripts": {
6
- "dev": "rsbuild dev",
6
+ "dev": "rsbuild dev --open",
7
7
  "build": "rsbuild build",
8
8
  "preview": "rsbuild preview"
9
9
  },
@@ -1,27 +1,28 @@
1
1
  <template>
2
- <div>
3
- <h1>Rsbuild + Vue</h1>
4
-
5
- <div class="card">
6
- <button type="button" @click="count++">count is {{ count }}</button>
7
- <p>
8
- Edit
9
- <code>App.vue</code> to test HMR
10
- </p>
11
- </div>
2
+ <div class="content">
3
+ <h1>Rsbuild with Vue</h1>
4
+ <p>Start building amazing things with Rsbuild.</p>
12
5
  </div>
13
6
  </template>
14
7
 
15
- <script>
16
- export default {
17
- data() {
18
- return { count: 0 };
19
- },
20
- };
21
- </script>
22
-
23
8
  <style scoped>
24
- .card {
25
- padding: 2em;
9
+ .content {
10
+ display: flex;
11
+ min-height: 100vh;
12
+ line-height: 1.1;
13
+ text-align: center;
14
+ flex-direction: column;
15
+ justify-content: center;
16
+ }
17
+
18
+ .content h1 {
19
+ font-size: 3.6rem;
20
+ font-weight: 700;
21
+ }
22
+
23
+ .content p {
24
+ font-size: 1.2rem;
25
+ font-weight: 400;
26
+ opacity: 0.5;
26
27
  }
27
28
  </style>
@@ -1,41 +1,6 @@
1
- :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
5
- font-weight: 400;
6
- color: #213547;
7
- background-color: #ffffff;
8
- max-width: 1280px;
9
- margin: 0 auto;
10
- padding: 5rem;
11
- text-align: center;
12
- }
13
-
14
1
  body {
15
2
  margin: 0;
16
- min-height: 100vh;
17
- }
18
-
19
- h1 {
20
- font-size: 3.2em;
21
- line-height: 1.1;
22
- }
23
-
24
- button {
25
- border-radius: 8px;
26
- border: 1px solid transparent;
27
- padding: 0.6em 1.2em;
28
- font-size: 1em;
29
- font-weight: 500;
30
- font-family: inherit;
31
- background-color: #f9f9f9;
32
- cursor: pointer;
33
- transition: border-color 0.25s;
34
- }
35
- button:hover {
36
- border-color: #646cff;
37
- }
38
- button:focus,
39
- button:focus-visible {
40
- outline: 4px auto -webkit-focus-ring-color;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
41
6
  }
@@ -1,5 +1,5 @@
1
- import Vue from 'vue';
2
1
  import './index.css';
2
+ import Vue from 'vue';
3
3
  import App from './App.vue';
4
4
 
5
5
  new Vue({
@@ -3,7 +3,7 @@
3
3
  "private": true,
4
4
  "version": "1.0.0",
5
5
  "scripts": {
6
- "dev": "rsbuild dev",
6
+ "dev": "rsbuild dev --open",
7
7
  "build": "rsbuild build",
8
8
  "preview": "rsbuild preview"
9
9
  },
@@ -13,6 +13,6 @@
13
13
  "devDependencies": {
14
14
  "@rsbuild/core": "workspace:*",
15
15
  "@rsbuild/plugin-vue2": "workspace:*",
16
- "typescript": "^5.2.2"
16
+ "typescript": "^5.3.0"
17
17
  }
18
18
  }
@@ -1,29 +1,28 @@
1
1
  <template>
2
- <div>
3
- <h1>Rsbuild + Vue</h1>
4
-
5
- <div class="card">
6
- <button type="button" @click="count++">count is {{ count }}</button>
7
- <p>
8
- Edit
9
- <code>App.vue</code> to test HMR
10
- </p>
11
- </div>
2
+ <div class="content">
3
+ <h1>Rsbuild with Vue</h1>
4
+ <p>Start building amazing things with Rsbuild.</p>
12
5
  </div>
13
6
  </template>
14
7
 
15
- <script lang="ts">
16
- import { defineComponent } from 'vue';
8
+ <style scoped>
9
+ .content {
10
+ display: flex;
11
+ min-height: 100vh;
12
+ line-height: 1.1;
13
+ text-align: center;
14
+ flex-direction: column;
15
+ justify-content: center;
16
+ }
17
17
 
18
- export default defineComponent({
19
- data() {
20
- return { count: 0 };
21
- },
22
- });
23
- </script>
18
+ .content h1 {
19
+ font-size: 3.6rem;
20
+ font-weight: 700;
21
+ }
24
22
 
25
- <style scoped>
26
- .card {
27
- padding: 2em;
23
+ .content p {
24
+ font-size: 1.2rem;
25
+ font-weight: 400;
26
+ opacity: 0.5;
28
27
  }
29
28
  </style>
@@ -1,3 +1,5 @@
1
+ /// <reference types="@rsbuild/core/types" />
2
+
1
3
  declare module '*.vue' {
2
4
  import Vue from 'vue';
3
5
 
@@ -1,41 +1,6 @@
1
- :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
5
- font-weight: 400;
6
- color: #213547;
7
- background-color: #ffffff;
8
- max-width: 1280px;
9
- margin: 0 auto;
10
- padding: 5rem;
11
- text-align: center;
12
- }
13
-
14
1
  body {
15
2
  margin: 0;
16
- min-height: 100vh;
17
- }
18
-
19
- h1 {
20
- font-size: 3.2em;
21
- line-height: 1.1;
22
- }
23
-
24
- button {
25
- border-radius: 8px;
26
- border: 1px solid transparent;
27
- padding: 0.6em 1.2em;
28
- font-size: 1em;
29
- font-weight: 500;
30
- font-family: inherit;
31
- background-color: #f9f9f9;
32
- cursor: pointer;
33
- transition: border-color 0.25s;
34
- }
35
- button:hover {
36
- border-color: #646cff;
37
- }
38
- button:focus,
39
- button:focus-visible {
40
- outline: 4px auto -webkit-focus-ring-color;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
41
6
  }
@@ -1,5 +1,5 @@
1
- import Vue from 'vue';
2
1
  import './index.css';
2
+ import Vue from 'vue';
3
3
  import App from './App.vue';
4
4
 
5
5
  new Vue({
@@ -3,7 +3,7 @@
3
3
  "private": true,
4
4
  "version": "1.0.0",
5
5
  "scripts": {
6
- "dev": "rsbuild dev",
6
+ "dev": "rsbuild dev --open",
7
7
  "build": "rsbuild build",
8
8
  "preview": "rsbuild preview"
9
9
  },
@@ -1,29 +1,28 @@
1
- <script setup>
2
- import { ref } from 'vue';
3
-
4
- defineProps({
5
- msg: {
6
- type: String,
7
- },
8
- });
9
-
10
- const count = ref(0);
11
- </script>
12
-
13
1
  <template>
14
- <h1>Rsbuild + Vue</h1>
15
-
16
- <div class="card">
17
- <button type="button" @click="count++">count is {{ count }}</button>
18
- <p>
19
- Edit
20
- <code>App.vue</code> to test HMR
21
- </p>
2
+ <div class="content">
3
+ <h1>Rsbuild with Vue</h1>
4
+ <p>Start building amazing things with Rsbuild.</p>
22
5
  </div>
23
6
  </template>
24
7
 
25
8
  <style scoped>
26
- .card {
27
- padding: 2em;
9
+ .content {
10
+ display: flex;
11
+ min-height: 100vh;
12
+ line-height: 1.1;
13
+ text-align: center;
14
+ flex-direction: column;
15
+ justify-content: center;
16
+ }
17
+
18
+ .content h1 {
19
+ font-size: 3.6rem;
20
+ font-weight: 700;
21
+ }
22
+
23
+ .content p {
24
+ font-size: 1.2rem;
25
+ font-weight: 400;
26
+ opacity: 0.5;
28
27
  }
29
28
  </style>
@@ -1,41 +1,6 @@
1
- :root {
2
- font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
3
- font-size: 16px;
4
- line-height: 24px;
5
- font-weight: 400;
6
- color: #213547;
7
- background-color: #ffffff;
8
- max-width: 1280px;
9
- margin: 0 auto;
10
- padding: 5rem;
11
- text-align: center;
12
- }
13
-
14
1
  body {
15
2
  margin: 0;
16
- min-height: 100vh;
17
- }
18
-
19
- h1 {
20
- font-size: 3.2em;
21
- line-height: 1.1;
22
- }
23
-
24
- button {
25
- border-radius: 8px;
26
- border: 1px solid transparent;
27
- padding: 0.6em 1.2em;
28
- font-size: 1em;
29
- font-weight: 500;
30
- font-family: inherit;
31
- background-color: #f9f9f9;
32
- cursor: pointer;
33
- transition: border-color 0.25s;
34
- }
35
- button:hover {
36
- border-color: #646cff;
37
- }
38
- button:focus,
39
- button:focus-visible {
40
- outline: 4px auto -webkit-focus-ring-color;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
41
6
  }
@@ -1,5 +1,5 @@
1
- import { createApp } from 'vue';
2
1
  import './index.css';
2
+ import { createApp } from 'vue';
3
3
  import App from './App.vue';
4
4
 
5
5
  createApp(App).mount('#root');
@@ -3,7 +3,7 @@
3
3
  "private": true,
4
4
  "version": "1.0.0",
5
5
  "scripts": {
6
- "dev": "rsbuild dev",
6
+ "dev": "rsbuild dev --open",
7
7
  "build": "rsbuild build",
8
8
  "preview": "rsbuild preview"
9
9
  },
@@ -13,6 +13,6 @@
13
13
  "devDependencies": {
14
14
  "@rsbuild/core": "workspace:*",
15
15
  "@rsbuild/plugin-vue": "workspace:*",
16
- "typescript": "^5.2.2"
16
+ "typescript": "^5.3.0"
17
17
  }
18
18
  }