File tree 16 files changed +17899
-11890
lines changed
16 files changed +17899
-11890
lines changed Original file line number Diff line number Diff line change
1
+ root = true
2
+
3
+ [* ]
4
+ charset = utf-8
5
+ indent_style = space
6
+ indent_size = 2
7
+ trim_trailing_whitespace = true
8
+ insert_final_newline = true
Original file line number Diff line number Diff line change
1
+ name : Build and Deploy
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+
7
+ workflow_dispatch :
8
+
9
+ permissions :
10
+ contents : read
11
+ pages : write
12
+ id-token : write
13
+
14
+ concurrency :
15
+ group : ' pages'
16
+ cancel-in-progress : false
17
+
18
+ jobs :
19
+ build :
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ with :
24
+ submodules : true # Fetch Hugo themes (true OR recursive)
25
+ fetch-depth : 0 # Fetch all history for .GitInfo and .Lastmod
26
+
27
+ - name : Setup Node.js
28
+ uses : actions/setup-node@v4
29
+ with :
30
+ node-version : 21
31
+ cache : ' yarn'
32
+
33
+ - name : Install dependencies
34
+ run : yarn --immutable
35
+
36
+ - name : Setup Pages
37
+ id : pages
38
+ uses : actions/configure-pages@v4
39
+
40
+ - name : Build
41
+ run : yarn build
42
+
43
+ - name : Upload artifact
44
+ uses : actions/upload-pages-artifact@v3
45
+ with :
46
+ path : dist
47
+
48
+ deploy :
49
+ environment :
50
+ name : github-pages
51
+ url : ${{ steps.deployment.outputs.page_url }}
52
+ runs-on : ubuntu-latest
53
+ needs : build
54
+ steps :
55
+ - name : Deploy to GitHub Pages
56
+ id : deployment
57
+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change
1
+ .yarn /*
2
+ ! .yarn /patches
3
+ ! .yarn /plugins
4
+ ! .yarn /releases
5
+ ! .yarn /sdks
6
+ ! .yarn /versions
7
+
8
+ # Swap the comments on the following lines if you wish to use zero-installs
9
+ # In that case, don't forget to run `yarn config set enableGlobalCache false`!
10
+ # Documentation here: https://yarnpkg.com/features/caching#zero-installs
11
+
12
+ # !.yarn/cache
13
+ .pnp. *
14
+
1
15
node_modules /
2
16
dist /
3
17
site /data /webpack.json
Original file line number Diff line number Diff line change
1
+ {
2
+ "recommendations" : [
3
+ " arcanis.vscode-zipfs" ,
4
+ " dbaeumer.vscode-eslint"
5
+ ]
6
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "search.exclude" : {
3
+ "**/.yarn" : true ,
4
+ "**/.pnp.*" : true
5
+ },
6
+ "eslint.nodePath" : " .yarn/sdks"
7
+ }
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env node
2
+
3
+ const { existsSync} = require ( `fs` ) ;
4
+ const { createRequire} = require ( `module` ) ;
5
+ const { resolve} = require ( `path` ) ;
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs" ;
8
+
9
+ const absPnpApiPath = resolve ( __dirname , relPnpApiPath ) ;
10
+ const absRequire = createRequire ( absPnpApiPath ) ;
11
+
12
+ if ( existsSync ( absPnpApiPath ) ) {
13
+ if ( ! process . versions . pnp ) {
14
+ // Setup the environment to be able to require eslint/bin/eslint.js
15
+ require ( absPnpApiPath ) . setup ( ) ;
16
+ }
17
+ }
18
+
19
+ // Defer to the real eslint/bin/eslint.js your application uses
20
+ module . exports = absRequire ( `eslint/bin/eslint.js` ) ;
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env node
2
+
3
+ const { existsSync} = require ( `fs` ) ;
4
+ const { createRequire} = require ( `module` ) ;
5
+ const { resolve} = require ( `path` ) ;
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs" ;
8
+
9
+ const absPnpApiPath = resolve ( __dirname , relPnpApiPath ) ;
10
+ const absRequire = createRequire ( absPnpApiPath ) ;
11
+
12
+ if ( existsSync ( absPnpApiPath ) ) {
13
+ if ( ! process . versions . pnp ) {
14
+ // Setup the environment to be able to require eslint
15
+ require ( absPnpApiPath ) . setup ( ) ;
16
+ }
17
+ }
18
+
19
+ // Defer to the real eslint your application uses
20
+ module . exports = absRequire ( `eslint` ) ;
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env node
2
+
3
+ const { existsSync} = require ( `fs` ) ;
4
+ const { createRequire} = require ( `module` ) ;
5
+ const { resolve} = require ( `path` ) ;
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs" ;
8
+
9
+ const absPnpApiPath = resolve ( __dirname , relPnpApiPath ) ;
10
+ const absRequire = createRequire ( absPnpApiPath ) ;
11
+
12
+ if ( existsSync ( absPnpApiPath ) ) {
13
+ if ( ! process . versions . pnp ) {
14
+ // Setup the environment to be able to require eslint/use-at-your-own-risk
15
+ require ( absPnpApiPath ) . setup ( ) ;
16
+ }
17
+ }
18
+
19
+ // Defer to the real eslint/use-at-your-own-risk your application uses
20
+ module . exports = absRequire ( `eslint/use-at-your-own-risk` ) ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " eslint" ,
3
+ "version" : " 8.47.0-sdk" ,
4
+ "main" : " ./lib/api.js" ,
5
+ "type" : " commonjs" ,
6
+ "bin" : {
7
+ "eslint" : " ./bin/eslint.js"
8
+ },
9
+ "exports" : {
10
+ "./package.json" : " ./package.json" ,
11
+ "." : " ./lib/api.js" ,
12
+ "./use-at-your-own-risk" : " ./lib/unsupported-api.js"
13
+ }
14
+ }
Original file line number Diff line number Diff line change
1
+ # This file is automatically generated by @yarnpkg/sdks.
2
+ # Manual changes might be lost!
3
+
4
+ integrations :
5
+ - vscode
Original file line number Diff line number Diff line change
1
+ yarnPath : .yarn/releases/yarn-4.1.1.cjs
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 6
6
"main" : " index.js" ,
7
7
"scripts" : {
8
8
"lint" : " eslint src cypress" ,
9
- "start" : " run-p start:**" ,
9
+ "start" : " PORT=3120 run-p \" start:**\" " ,
10
10
"start:hugo" : " hugo -d ../dist -s site -vw" ,
11
11
"start:webpack" : " webpack-dev-server --config webpack.dev.js --hot" ,
12
12
"preview" : " run-p preview:**" ,
63
63
"webpack-merge" : " ^5.8.0"
64
64
},
65
65
"dependencies" : {
66
+ "@babel/plugin-syntax-object-rest-spread" : " ^7.8.3" ,
66
67
"@babel/preset-react" : " ^7.17.12" ,
67
68
"cypress" : " ^10.5.0" ,
68
69
"date-fns" : " ^2.28.0" ,
72
73
"react" : " ^17.0.2" ,
73
74
"react-dom" : " ^17.0.2" ,
74
75
"to-string-loader" : " ^1.2.0"
75
- }
76
+ },
77
+ "packageManager" :
" [email protected] "
76
78
}
Original file line number Diff line number Diff line change 1
1
backend :
2
- name : git-gateway
2
+ name : github
3
+ repo : nllcommunity/nllcommunity.github.io
3
4
branch : main
5
+ site_domain : nllcommunity.github.io
4
6
5
7
media_folder : " site/static/img" # Folder where user uploaded files should go
6
8
public_folder : " img"
You can’t perform that action at this time.
0 commit comments