Skip to content

Commit

Permalink
Merge pull request #35 from davidjoy/main
Browse files Browse the repository at this point in the history
Point in time merge: CLI and Header work
  • Loading branch information
davidjoy authored Oct 24, 2024
2 parents 6d0ae1c + a8bcd7a commit c91f736
Show file tree
Hide file tree
Showing 201 changed files with 6,764 additions and 21,775 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ module.exports = merge(config, {
'.eslintrc.js',
'frontend-base.d.ts',
'coverage',
'example',
'example-plugin-app',
'tools',
'config',
'dist',
],
parserOptions: {
project: path.resolve(__dirname, './tsconfig.json'),
Expand Down
27 changes: 19 additions & 8 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
__mocks__
.eslintignore
.eslintrc.json
./.eslintrc.js
.github
.gitignore
.travis.yml
docker-compose.yml
Dockerfile
Makefile
npm-debug.log

*.test.js
*.test.jsx
*.test.ts
*.test.tsx
./babel.config.js
catalog-info.yaml
coverage
docs
./jest.config.js
jsdoc.json
renovate.json
service-interface.png
Makefile
node_modules
public
npm-debug.log
openedx-frontend-base-*.tgz
test-project
.nvmrc
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,18 @@ doc_command = ./node_modules/.bin/documentation build src -g -c ./docs/documenta
cat_docs_command = cat ./docs/_API-header.md ./docs/_API-body.md > ./docs/API.md

build:
rm -rf ./config ./dist
tsc --project tsconfig.build.json
rm -rf ./config ./tools/dist
tsc --project ./tsconfig.json
mkdir -p ./config
cp tools/typescript/tsconfig.json config/tsconfig.json
tsc --project ./tools/tsconfig.json
cp -prf ./tools/dist ./dist
mv ./dist/dist ./dist/tools
cp -prf ./tools/dist/config-helpers ./config/config-helpers
cp -prf ./tools/dist/defaultConfigPaths.js ./config/defaultConfigPaths.js
cp -prf ./tools/dist/types.js ./config/types.js
cp -prf ./tools/dist/eslint ./config/eslint
cp -prf ./tools/dist/jest ./config/jest
cp -prf ./tools/dist/webpack ./config/webpack
cp -prf ./tools/dist/babel ./config/babel
cp -prf ./tools/dist/index.js ./config/index.js

docs-build:
Expand Down
Loading

0 comments on commit c91f736

Please sign in to comment.