Skip to content

Commit 3290230

Browse files
authored
Use bokeh's ianthomas23/13732_maybe_initialize branch (#31)
1 parent b1b3f78 commit 3290230

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Clone bokeh branch
3838
run: |
39-
git clone -b ianthomas23/bokehjs_examples_temp --single-branch --depth 1 https://github.com/bokeh/bokeh.git
39+
git clone -b ianthomas23/13732_maybe_initialize --single-branch --depth 1 https://github.com/bokeh/bokeh.git
4040
4141
- name: Build bokehjs
4242
working-directory: bokeh/bokehjs

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ installed.
1212

1313
```bash
1414
cd <directory of choice>
15-
git clone -b ianthomas23/bokehjs_examples_temp --single-branch --depth 1 https://github.com/bokeh/bokeh.git
15+
git clone -b ianthomas23/13732_maybe_initialize --single-branch --depth 1 https://github.com/bokeh/bokeh.git
1616
cd bokeh/bokehjs
1717
node make build
1818
npm pack
1919
```
2020

21-
This will produce the file `bokeh-bokehjs-3.7.0-dev.5.tgz` which should be copied to the root
21+
This will produce the file `bokeh-bokehjs-3.8.0-dev.1.tgz` which should be copied to the root
2222
directory of the bokehjs-examples repository.

ci/typescript/create_vanilla_rspack.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ rm temp.json
100100
# In a web browser navigate to http://localhost:4500/
101101

102102
# 9. Add BokehJS dependency to this project. This assumes the package has been built and copied to the root directory of this repository as outlined in the top-level README.md.
103-
npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz
103+
npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz
104104

105105
# 10. Replace contents of src/index.ts with code to create BokehJS plot
106106
mkdir -p src

ci/typescript/create_vanilla_vite.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ EOF
3535
# In a web browser navigate to http://localhost:5173/
3636

3737
# 6. Add BokehJS dependency to this project. This assumes the package has been built and copied to the root directory of this repository as outlined in the top-level README.md.
38-
npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz
38+
npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz
3939

4040
# 7. Replace src/main.ts with a simple hello example
4141
cat > src/main.ts << EOF

ci/typescript/create_vanilla_webpack.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ rm temp.json
101101
# In a web browser navigate to http://localhost:4500/
102102

103103
# 9. Add BokehJS dependency to this project. This assumes the package has been built and copied to the root directory of this repository as outlined in the top-level README.md.
104-
npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz
104+
npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz
105105

106106
# 10. Replace contents of src/index.ts with code to create BokehJS plot
107107
mkdir -p src

recipes/src/recipes/typescript/vanilla_rspack_recipe.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default config;`)
9696
this.add(new CommandStep(
9797
'Add BokehJS dependency to this project. This assumes the package has been built and ' +
9898
'copied to the root directory of this repository as outlined in the top-level `README.md`.',
99-
['npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz']
99+
['npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz']
100100
));
101101

102102
this.add(new CreateFileStep(

recipes/src/recipes/typescript/vanilla_vite_recipe.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class VanillaViteRecipe extends Recipe {
4444
this.add(new CommandStep(
4545
'Add BokehJS dependency to this project. This assumes the package has been built and ' +
4646
'copied to the root directory of this repository as outlined in the top-level `README.md`.',
47-
['npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz']
47+
['npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz']
4848
));
4949

5050
this.add(new ReplaceFileStep(

recipes/src/recipes/typescript/vanilla_webpack_recipe.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default config;`)
9595
this.add(new CommandStep(
9696
'Add BokehJS dependency to this project. This assumes the package has been built and ' +
9797
'copied to the root directory of this repository as outlined in the top-level `README.md`.',
98-
['npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz']
98+
['npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz']
9999
));
100100

101101
this.add(new CreateFileStep(

typescript/vanilla_rspack/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ This is almost identical to the vanilla webpack example, as `rspack` is designed
101101
9. Add BokehJS dependency to this project. This assumes the package has been built and copied to the root directory of this repository as outlined in the top-level `README.md`.
102102
103103
```bash
104-
npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz
104+
npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz
105105
```
106106
107107
10. Replace contents of `src/index.ts` with code to create BokehJS plot containing

typescript/vanilla_vite/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Create an initial basic project using `create-vite`.
4040
6. Add BokehJS dependency to this project. This assumes the package has been built and copied to the root directory of this repository as outlined in the top-level `README.md`.
4141

4242
```bash
43-
npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz
43+
npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz
4444
```
4545

4646
7. Replace `src/main.ts` with a simple hello example containing

typescript/vanilla_webpack/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
9. Add BokehJS dependency to this project. This assumes the package has been built and copied to the root directory of this repository as outlined in the top-level `README.md`.
101101
102102
```bash
103-
npm install ../../../../bokeh-bokehjs-3.7.0-dev.5.tgz
103+
npm install ../../../../bokeh-bokehjs-3.8.0-dev.1.tgz
104104
```
105105
106106
10. Replace contents of `src/index.ts` with code to create BokehJS plot containing

0 commit comments

Comments
 (0)