We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I encountered an issue while trying to deploy your project locally (Windows 11, Node.js 16.20.0) following your main README file.
During the yarn workspace @open-condo/ui build stage, the build failed with the following errors:
yarn workspace @open-condo/ui build
No properties for variables.less. File not created. No properties for variables.css. File not created.
To resolve this, I had to modify two lines in packages/ui/bin/buildStyleVars/runner.js:
packages/ui/bin/buildStyleVars/runner.js
const TOKENS_DIR = path.join(__dirname, '../..', 'src/tokens') const SOURCE_PATH = path.join(TOKENS_DIR, 'sets/*.json') These lines needed to be changed to: const TOKENS_DIR = path.join(__dirname, '..', '..', 'src', 'tokens') const SOURCE_PATH = path.join(TOKENS_DIR, 'sets', '*.json').replace(/\\/g, '/')
Additionally, before running yarn workspace @app/condo build, it's necessary to execute the following commands:
yarn workspace @app/condo build
yarn workspace @open-condo/miniapp-utils build yarn workspace @open-condo/apollo build
Please update the main README file to reflect these changes.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I encountered an issue while trying to deploy your project locally (Windows 11, Node.js 16.20.0) following your main README file.
During the
yarn workspace @open-condo/ui build
stage, the build failed with the following errors:To resolve this, I had to modify two lines in
packages/ui/bin/buildStyleVars/runner.js
:Additionally, before running
yarn workspace @app/condo build
, it's necessary to execute the following commands:Please update the main README file to reflect these changes.
The text was updated successfully, but these errors were encountered: