diff --git a/.verdaccio/config.yml b/.verdaccio/config.yml new file mode 100644 index 0000000..f74420f --- /dev/null +++ b/.verdaccio/config.yml @@ -0,0 +1,28 @@ +# path to a directory with all packages +storage: ../tmp/local-registry/storage + +# a list of other known repositories we can talk to +uplinks: + npmjs: + url: https://registry.npmjs.org/ + maxage: 60m + +packages: + '**': + # give all users (including non-authenticated users) full access + # because it is a local registry + access: $all + publish: $all + unpublish: $all + + # if package is not available locally, proxy requests to npm registry + proxy: npmjs + +# log settings +log: + type: stdout + format: pretty + level: warn + +publish: + allow_offline: true # set offline to true to allow publish offline diff --git a/apps/dimentorin/postcss.config.mjs b/apps/dimentorin/postcss.config.mjs new file mode 100644 index 0000000..a34a3d5 --- /dev/null +++ b/apps/dimentorin/postcss.config.mjs @@ -0,0 +1,5 @@ +export default { + plugins: { + '@tailwindcss/postcss': {}, + }, +}; diff --git a/apps/dimentorin/src/app/app.module.css b/apps/dimentorin/src/app/app.module.css deleted file mode 100644 index 7b88fba..0000000 --- a/apps/dimentorin/src/app/app.module.css +++ /dev/null @@ -1 +0,0 @@ -/* Your styles goes here. */ diff --git a/apps/dimentorin/src/app/app.spec.tsx b/apps/dimentorin/src/app/app.spec.tsx deleted file mode 100644 index 279c1f2..0000000 --- a/apps/dimentorin/src/app/app.spec.tsx +++ /dev/null @@ -1,17 +0,0 @@ -import { render } from '@testing-library/react'; - -import App from './app'; - -describe('App', () => { - it('should render successfully', () => { - const { baseElement } = render(); - expect(baseElement).toBeTruthy(); - }); - - it('should have a greeting as the title', () => { - const { getAllByText } = render(); - expect( - getAllByText(new RegExp('Welcome dimentorin', 'gi')).length > 0 - ).toBeTruthy(); - }); -}); diff --git a/apps/dimentorin/src/app/app.tsx b/apps/dimentorin/src/app/app.tsx deleted file mode 100644 index 324bf5d..0000000 --- a/apps/dimentorin/src/app/app.tsx +++ /dev/null @@ -1,13 +0,0 @@ -// Uncomment this line to use CSS modules -// import styles from './app.module.css'; -import NxWelcome from './nx-welcome'; - -export function App() { - return ( -
- -
- ); -} - -export default App; diff --git a/apps/dimentorin/src/app/nx-welcome.tsx b/apps/dimentorin/src/app/nx-welcome.tsx deleted file mode 100644 index f3c5c7a..0000000 --- a/apps/dimentorin/src/app/nx-welcome.tsx +++ /dev/null @@ -1,856 +0,0 @@ -/* - * * * * * * * * * * * * * * * * * * * * * * * * * * * * - This is a starter component and can be deleted. - * * * * * * * * * * * * * * * * * * * * * * * * * * * * - Delete this file and get started with your project! - * * * * * * * * * * * * * * * * * * * * * * * * * * * * - */ -export function NxWelcome({ title }: { title: string }) { - return ( - <> -