File tree 7 files changed +19
-31
lines changed
7 files changed +19
-31
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ WORKDIR /usr/src/app
23
23
# to execute the final Eleventy build step.
24
24
25
25
# External dependencies
26
- COPY public-vars.json package*.json tsconfig.base.json ./
26
+ COPY package*.json tsconfig.base.json ./
27
27
COPY packages/lit-dev-tools-cjs/package*.json ./packages/lit-dev-tools-cjs/
28
28
COPY packages/lit-dev-tools-esm/package*.json ./packages/lit-dev-tools-esm/
29
29
COPY packages/lit-dev-server/package*.json ./packages/lit-dev-server/
Original file line number Diff line number Diff line change @@ -451,10 +451,9 @@ ${content}
451
451
return `<script type="module">${ script } </script>` ;
452
452
} ) ;
453
453
454
- eleventyConfig . addShortcode ( 'algoliaid' , ( ) => {
455
- const varsRaw = fsSync . readFileSync ( '../../public-vars.json' , 'utf8' ) ;
456
- const vars = JSON . parse ( varsRaw ) ;
457
- return vars . algolia . appId ;
454
+ eleventyConfig . addNunjucksAsyncShortcode ( 'algoliaid' , async ( ) => {
455
+ const { publicVars} = await import ( 'lit-dev-tools-esm/lib/configs.js' ) ;
456
+ return publicVars . algolia . appId ;
458
457
} ) ;
459
458
460
459
// Source: https://github.com/11ty/eleventy-base-blog/blob/master/.eleventy.js
Original file line number Diff line number Diff line change 22
22
"dev:build:eleventy" : " wireit" ,
23
23
"dev:build:eleventy:watch" : " wireit" ,
24
24
"dev:serve" : " wireit" ,
25
- "copy-keys" : " wireit" ,
26
25
"prod:build" : " wireit" ,
27
26
"prod:build:assets" : " wireit"
28
27
},
137
136
" lib"
138
137
],
139
138
"dependencies" : [
140
- " copy-keys "
139
+ " ../lit-dev-tools-esm:build:ts "
141
140
],
142
141
"command" : " ../../node_modules/.bin/tsc --build --pretty" ,
143
142
"clean" : " if-file-deleted"
166
165
" samples/js/**"
167
166
],
168
167
"command" : " node ../lit-dev-tools-esm/lib/generate-js-samples.js"
169
- },
170
- "copy-keys" : {
171
- "files" : [
172
- " ../../public-vars.json"
173
- ],
174
- "output" : [
175
- " src/public-vars.ts"
176
- ],
177
- "command" : " cp ../../public-vars.json public-vars.tsorig && echo 'export default ' > public-vars.tstemp && cat public-vars.tsorig >> public-vars.tstemp && cp public-vars.tstemp src/public-vars.ts && rm public-vars.tstemp && rm public-vars.tsorig"
178
168
}
179
169
},
180
170
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import algoliasearch, {
29
29
SearchIndex ,
30
30
} from 'algoliasearch/dist/algoliasearch-lite.esm.browser.js' ;
31
31
import { Task , TaskStatus } from '@lit-labs/task' ;
32
- import vars from '../public-vars .js' ;
32
+ import { publicVars } from 'lit-dev-tools-esm/lib/configs .js' ;
33
33
34
34
/**
35
35
* Representation of each document indexed by Minisearch.
@@ -192,12 +192,12 @@ export class LitDevSearch extends LitElement {
192
192
private _searchText : string = '' ;
193
193
194
194
private static _algoliaClient : SearchClient = algoliasearch (
195
- vars . algolia . appId ,
196
- vars . algolia . searchOnlyKey
195
+ publicVars . algolia . appId ,
196
+ publicVars . algolia . searchOnlyKey
197
197
) ;
198
198
199
199
private static _algoliaIndex : SearchIndex =
200
- LitDevSearch . _algoliaClient . initIndex ( vars . algolia . index ) ;
200
+ LitDevSearch . _algoliaClient . initIndex ( publicVars . algolia . index ) ;
201
201
202
202
private _searchTask : Task < string [ ] , Suggestion [ ] > | null = null ;
203
203
Original file line number Diff line number Diff line change
1
+ export const publicVars = {
2
+ algolia : {
3
+ appId : 'OC866NN61X' ,
4
+ searchOnlyKey : '33401c252374747a39ef3b42c9f701ac' ,
5
+ index : 'lit.dev' ,
6
+ } ,
7
+ } ;
Original file line number Diff line number Diff line change 6
6
7
7
import algolia from 'algoliasearch' ;
8
8
import fs from 'fs' ;
9
+ import { publicVars } from './configs.js' ;
9
10
10
- const varsRaw = fs . readFileSync ( '../../public-vars.json' , 'utf8' ) ;
11
- const vars = JSON . parse ( varsRaw ) ;
12
11
const searchIndexRaw = fs . readFileSync (
13
12
'../lit-dev-content/_site/searchIndex.json' ,
14
13
'utf8'
@@ -20,6 +19,6 @@ if (!ALGOLIA_WRITE_KEY) {
20
19
throw new Error ( 'ALGOLIA_WRITE_KEY environment variable is not set' ) ;
21
20
}
22
21
23
- const client = algolia ( vars . algolia . appId , ALGOLIA_WRITE_KEY ) ;
24
- const index = client . initIndex ( vars . algolia . indexName ) ;
22
+ const client = algolia ( publicVars . algolia . appId , ALGOLIA_WRITE_KEY ) ;
23
+ const index = client . initIndex ( publicVars . algolia . index ) ;
25
24
await index . replaceAllObjects ( searchIndex ) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments