Skip to content
New issue

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

feat: SSR compatible components #613

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ module.exports = {
config.plugins.push(postCSS({ include: ['**/*.scss'], inject: false }));

return config;
}
},
};
1 change: 1 addition & 0 deletions .storybook/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
181 changes: 181 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/IgniteUI/igniteui-webcomponents"
Expand All @@ -25,8 +26,8 @@
"build:docs:json": "web-component-analyzer \"src/**/*.ts\" --format json --outDir docs/json",
"build:docs:schema": "web-component-analyzer src --format json --outFile custom-elements.json",
"build:docs:vscode-schema": "web-component-analyzer src --format vscode --outFile vscode-html-custom-data.json",
"build:meta": "node scripts/build-stories.js",
"watch-meta": "node scripts/stories-watcher.js ",
"build:meta": "node scripts/build-stories.mjs",
"watch-meta": "node scripts/stories-watcher.mjs ",
"watch-scss": "node scripts/styles-watcher.mjs",
"watch-ts": "tsc --watch --preserveWatchOutput",
"check": "madge --circular --warning --no-spinner dist/src/index.js",
Expand All @@ -45,10 +46,10 @@
"test:watch": "npm run build && concurrently -k -r \"npm:watch-scss\" \"npm:watch-ts\" \"wtr --watch\"",
"storybook": "npm run build && concurrently -k -r \"npm:watch-scss\" \"npm:watch-ts\" \"npm:watch-meta\" \"wds -c .storybook/server.mjs\"",
"storybook:build": "npm run build && build-storybook -o ./storybook-static",
"build:typedoc:watch": "node scripts/build-typedoc.js watch",
"build:typedoc:serve": "node scripts/build-typedoc.js serve && concurrently -k -r \"npm:build:typedoc:watch\"",
"build:typedoc:ja": "set NODE_ENV=production && node scripts/build-typedoc.js buildJA",
"build:typedoc:en": "set NODE_ENV=production && node scripts/build-typedoc.js buildEN",
"build:typedoc:watch": "node scripts/build-typedoc.mjs watch",
"build:typedoc:serve": "node scripts/build-typedoc.mjs serve && concurrently -k -r \"npm:build:typedoc:watch\"",
"build:typedoc:ja": "set NODE_ENV=production && node scripts/build-typedoc.mjs buildJA",
"build:typedoc:en": "set NODE_ENV=production && node scripts/build-typedoc.mjs buildEN",
"deploy-storybook": "storybook-to-ghpages --ci --existing-output-dir=./storybook-static",
"prepare": "husky install"
},
Expand All @@ -59,6 +60,7 @@
},
"devDependencies": {
"@igniteui/material-icons-extended": "^2.11.0",
"@lit-labs/testing": "^0.2.0",
"@open-wc/eslint-config": "^9.2.2",
"@open-wc/testing": "^3.1.7",
"@storybook/storybook-deployer": "^2.8.16",
Expand Down
14 changes: 9 additions & 5 deletions scripts/build-stories.js → scripts/build-stories.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
const fs = require('fs');
const path = require('path');
const util = require('util');
const prettier = require('prettier');
const report = require('./report');
import fs from 'node:fs';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import util from 'node:util';
import prettier from 'prettier';

import report from './report.mjs';

const __dirname = path.dirname(fileURLToPath(import.meta.url));

const readFile = util.promisify(fs.readFile);
const writeFile = util.promisify(fs.writeFile);
Expand Down
7 changes: 5 additions & 2 deletions scripts/build-styles.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { globby } from 'globby';
import report from './report.js';
import report from './report.mjs';
import { sassRender, template } from './sass.mjs';

(async () => {
Expand All @@ -19,5 +19,8 @@ import { sassRender, template } from './sass.mjs';
process.exit(-1);
});
}
report.success(`Styles generated in ${Math.round((Date.now() - startTime) / 1000)}s`);

report.success(
`Styles generated in ${Math.round((Date.now() - startTime) / 1000)}s`
);
})();
Loading