|
46 | 46 | "./theme/*.js": "./dist/esm/theme/*.js", |
47 | 47 | "./*/base.js": "./dist/esm/*/*.base.js", |
48 | 48 | "./*/define.js": "./dist/esm/*/define.js", |
| 49 | + "./*/define-async.js": "./dist/esm/*/define-async.js", |
49 | 50 | "./*/definition.js": "./dist/esm/*/*.definition.js", |
50 | 51 | "./*/options.js": "./dist/esm/*/*.options.js", |
51 | 52 | "./*/styles.js": "./dist/esm/*/*.styles.js", |
| 53 | + "./*/styles.css": "./dist/esm/*/*.styles.css", |
52 | 54 | "./*/template.js": "./dist/esm/*/*.template.js", |
| 55 | + "./*/template.html": "./dist/esm/*/*.template.html", |
53 | 56 | "./*/index.js": "./dist/esm/*/index.js", |
54 | 57 | "./*.js": "./dist/esm/*/define.js", |
55 | 58 | "./custom-elements.json": "./custom-elements.json", |
56 | 59 | "./package.json": "./package.json" |
57 | 60 | }, |
58 | 61 | "sideEffects": [ |
59 | 62 | "define.*", |
| 63 | + "define-async.*", |
60 | 64 | "define-all.*", |
61 | 65 | "index-rollup.*", |
62 | 66 | "index-all-rollup.*", |
|
75 | 79 | "compile:benchmark": "rollup -c rollup.bench.js", |
76 | 80 | "clean": "node ./scripts/clean dist", |
77 | 81 | "generate-api": "api-extractor run --local", |
78 | | - "build": "yarn compile && yarn rollup -c && yarn generate-api && yarn analyze", |
| 82 | + "build": "yarn compile && yarn build:rollup && yarn build:ssr && yarn generate-api && yarn analyze", |
| 83 | + "build:ssr:templates": "fast-test-harness generate-templates --tag-prefix=fluent", |
| 84 | + "build:ssr:styles": "fast-test-harness generate-stylesheets", |
| 85 | + "build:ssr": "yarn build:ssr:templates && yarn build:ssr:styles", |
| 86 | + "build:rollup": "rollup -c", |
79 | 87 | "lint": "eslint . --ext .ts", |
80 | 88 | "lint:fix": "eslint . --ext .ts --fix", |
81 | 89 | "format": "prettier -w src/**/*.{ts,html} src/*.{ts,html} --ignore-path ../../.prettierignore", |
|
106 | 114 | }, |
107 | 115 | "peerDependencies": { |
108 | 116 | "@microsoft/fast-element": "^2.0.0", |
| 117 | + "@microsoft/fast-html": "^1.0.0-alpha.53", |
109 | 118 | "@microsoft/focusgroup-polyfill": "^1.4.1" |
110 | 119 | }, |
| 120 | + "peerDependenciesMeta": { |
| 121 | + "@microsoft/fast-html": { |
| 122 | + "optional": true |
| 123 | + } |
| 124 | + }, |
111 | 125 | "beachball": { |
112 | 126 | "disallowedChangeTypes": [ |
113 | 127 | "major", |
|
0 commit comments