├── .github ├── ISSUE_TEMPLATE │ └── notes-request.md └── workflows │ └── static.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── build ├── NoteMetadata.cs ├── Program.cs ├── build.csproj ├── package-lock.json ├── package.json ├── public │ └── images │ │ ├── fabric-notes-header.png │ │ ├── fabric-notes-header.svg │ │ └── fabric-notes-ico.png ├── tailwind.config.js └── templates │ └── index.html └── notes ├── 01-welcome.md ├── 01-welcome.png ├── 02-understand-fabric-ui.md ├── 02-understand-fabric-ui.png ├── 03-fabric-saas-product.md ├── 03-fabric-saas-product.png ├── 04-lakehouse-vs-warehouse.md ├── 04-lakehouse-vs-warehouse.png ├── 05-fabric-artifacts-all.md ├── 05-fabric-artifacts-all.png ├── 06-what-is-fabric.md ├── 06-what-is-fabric.png ├── 07-4-ways-learn-fabric.md ├── 07-4-ways-learn-fabric.png ├── 08-fabric-lingo-part-1.md ├── 08-fabric-lingo-part-1.png ├── 09-onelake-visually.md ├── 09-onelake-visually.png ├── 10-parquet-format.md ├── 10-parquet-format.png ├── 11-onelake-shortcuts.md ├── 11-onelake-shortcuts.png ├── 12-sql-endpoints.md ├── 12-sql-endpoints.png ├── 13-fabric-licensing.md ├── 13-fabric-licensing.png ├── 14-direct-lake.md ├── 14-direct-lake.png ├── 15-fabric-icons.md ├── 15-fabric-icons.png ├── 16-create-delta-tables-spark.md ├── 16-create-delta-tables-spark.png ├── 17-spark-tables-managed-vs-external.md ├── 17-spark-tables-managed-vs-external.png ├── 18-relational-to-star-schema.md ├── 18-relational-to-star-schema.png ├── 19-ingest-data-datawarehouse.md ├── 19-ingest-data-datawarehouse.png ├── 999-coming-soon.md ├── 999-coming-soon.png └── test-blank-note.md /.github/ISSUE_TEMPLATE/notes-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Notes request 3 | about: Suggest an idea for a new note 4 | title: "[Note] " 5 | labels: Note request 6 | assignees: '' 7 | 8 | --- 9 | 10 | **What concept do you need more clarity on?** 11 | A clear and concise description of the content of the note. 12 | 13 | **Any reference explaining that concept** 14 | List documentation pages, community discussions, and other resources related to this concept 15 | 16 | **Have you checked the list of issues to see if there is a similar suggestion?** 17 | - [ ] Yes, I have checked (please check this box) 18 | -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- 1 | # Simple workflow for deploying static content to GitHub Pages 2 | name: Deploy website 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["main"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 19 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 20 | concurrency: 21 | group: "pages" 22 | cancel-in-progress: false 23 | 24 | jobs: 25 | # Single deploy job since we're just deploying 26 | deploy: 27 | environment: 28 | name: github-pages 29 | url: ${{ steps.deployment.outputs.page_url }} 30 | runs-on: ubuntu-latest 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v3 34 | - name: Setup .NET 35 | uses: actions/setup-dotnet@v3 36 | with: 37 | dotnet-version: 7.0.x 38 | - name: Use Node.js 39 | uses: actions/setup-node@v3 40 | with: 41 | node-version: 18.x 42 | # cache: 'npm' 43 | - name: Setup Pages 44 | uses: actions/configure-pages@v3 45 | - name: Build CSS 46 | run: | 47 | cd build 48 | npm ci 49 | npx tailwindcss -o ./public/fabricnotes.css 50 | 51 | - name: Build Website 52 | run: | 53 | cd build 54 | dotnet restore 55 | cd .. 56 | dotnet run --project build/build.csproj 57 | 58 | - name: Upload artifact 59 | uses: actions/upload-pages-artifact@v1 60 | with: 61 | path: './dist' 62 | - name: Deploy to GitHub Pages 63 | id: deployment 64 | uses: actions/deploy-pages@v2 65 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | ## Build engine output 17 | dist/ 18 | 19 | # Mono auto generated files 20 | mono_crash.* 21 | 22 | # Build results 23 | [Dd]ebug/ 24 | [Dd]ebugPublic/ 25 | [Rr]elease/ 26 | [Rr]eleases/ 27 | x64/ 28 | x86/ 29 | [Aa][Rr][Mm]/ 30 | [Aa][Rr][Mm]64/ 31 | bld/ 32 | [Bb]in/ 33 | [Oo]bj/ 34 | [Ll]og/ 35 | [Ll]ogs/ 36 | 37 | # Visual Studio 2015/2017 cache/options directory 38 | .vs/ 39 | # Uncomment if you have tasks that create the project's static files in wwwroot 40 | #wwwroot/ 41 | 42 | # Visual Studio 2017 auto generated files 43 | Generated\ Files/ 44 | 45 | # MSTest test Results 46 | [Tt]est[Rr]esult*/ 47 | [Bb]uild[Ll]og.* 48 | 49 | # NUnit 50 | *.VisualState.xml 51 | TestResult.xml 52 | nunit-*.xml 53 | 54 | # Build Results of an ATL Project 55 | [Dd]ebugPS/ 56 | [Rr]eleasePS/ 57 | dlldata.c 58 | 59 | # Benchmark Results 60 | BenchmarkDotNet.Artifacts/ 61 | 62 | # .NET Core 63 | project.lock.json 64 | project.fragment.lock.json 65 | artifacts/ 66 | 67 | # StyleCop 68 | StyleCopReport.xml 69 | 70 | # Files built by Visual Studio 71 | *_i.c 72 | *_p.c 73 | *_h.h 74 | *.ilk 75 | *.meta 76 | *.obj 77 | *.iobj 78 | *.pch 79 | *.pdb 80 | *.ipdb 81 | *.pgc 82 | *.pgd 83 | *.rsp 84 | *.sbr 85 | *.tlb 86 | *.tli 87 | *.tlh 88 | *.tmp 89 | *.tmp_proj 90 | *_wpftmp.csproj 91 | *.log 92 | *.vspscc 93 | *.vssscc 94 | .builds 95 | *.pidb 96 | *.svclog 97 | *.scc 98 | 99 | # Chutzpah Test files 100 | _Chutzpah* 101 | 102 | # Visual C++ cache files 103 | ipch/ 104 | *.aps 105 | *.ncb 106 | *.opendb 107 | *.opensdf 108 | *.sdf 109 | *.cachefile 110 | *.VC.db 111 | *.VC.VC.opendb 112 | 113 | # Visual Studio profiler 114 | *.psess 115 | *.vsp 116 | *.vspx 117 | *.sap 118 | 119 | # Visual Studio Trace Files 120 | *.e2e 121 | 122 | # TFS 2012 Local Workspace 123 | $tf/ 124 | 125 | # Guidance Automation Toolkit 126 | *.gpState 127 | 128 | # ReSharper is a .NET coding add-in 129 | _ReSharper*/ 130 | *.[Rr]e[Ss]harper 131 | *.DotSettings.user 132 | 133 | # TeamCity is a build add-in 134 | _TeamCity* 135 | 136 | # DotCover is a Code Coverage Tool 137 | *.dotCover 138 | 139 | # AxoCover is a Code Coverage Tool 140 | .axoCover/* 141 | !.axoCover/settings.json 142 | 143 | # Visual Studio code coverage results 144 | *.coverage 145 | *.coveragexml 146 | 147 | # NCrunch 148 | _NCrunch_* 149 | .*crunch*.local.xml 150 | nCrunchTemp_* 151 | 152 | # MightyMoose 153 | *.mm.* 154 | AutoTest.Net/ 155 | 156 | # Web workbench (sass) 157 | .sass-cache/ 158 | 159 | # Installshield output folder 160 | [Ee]xpress/ 161 | 162 | # DocProject is a documentation generator add-in 163 | DocProject/buildhelp/ 164 | DocProject/Help/*.HxT 165 | DocProject/Help/*.HxC 166 | DocProject/Help/*.hhc 167 | DocProject/Help/*.hhk 168 | DocProject/Help/*.hhp 169 | DocProject/Help/Html2 170 | DocProject/Help/html 171 | 172 | # Click-Once directory 173 | publish/ 174 | 175 | # Publish Web Output 176 | *.[Pp]ublish.xml 177 | *.azurePubxml 178 | # Note: Comment the next line if you want to checkin your web deploy settings, 179 | # but database connection strings (with potential passwords) will be unencrypted 180 | *.pubxml 181 | *.publishproj 182 | 183 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 184 | # checkin your Azure Web App publish settings, but sensitive information contained 185 | # in these scripts will be unencrypted 186 | PublishScripts/ 187 | 188 | # NuGet Packages 189 | *.nupkg 190 | # NuGet Symbol Packages 191 | *.snupkg 192 | # The packages folder can be ignored because of Package Restore 193 | **/[Pp]ackages/* 194 | # except build/, which is used as an MSBuild target. 195 | !**/[Pp]ackages/build/ 196 | # Uncomment if necessary however generally it will be regenerated when needed 197 | #!**/[Pp]ackages/repositories.config 198 | # NuGet v3's project.json files produces more ignorable files 199 | *.nuget.props 200 | *.nuget.targets 201 | 202 | # Microsoft Azure Build Output 203 | csx/ 204 | *.build.csdef 205 | 206 | # Microsoft Azure Emulator 207 | ecf/ 208 | rcf/ 209 | 210 | # Windows Store app package directories and files 211 | AppPackages/ 212 | BundleArtifacts/ 213 | Package.StoreAssociation.xml 214 | _pkginfo.txt 215 | *.appx 216 | *.appxbundle 217 | *.appxupload 218 | 219 | # Visual Studio cache files 220 | # files ending in .cache can be ignored 221 | *.[Cc]ache 222 | # but keep track of directories ending in .cache 223 | !?*.[Cc]ache/ 224 | 225 | # Others 226 | ClientBin/ 227 | ~$* 228 | *~ 229 | *.dbmdl 230 | *.dbproj.schemaview 231 | *.jfm 232 | *.pfx 233 | *.publishsettings 234 | orleans.codegen.cs 235 | 236 | # Including strong name files can present a security risk 237 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 238 | #*.snk 239 | 240 | # Since there are multiple workflows, uncomment next line to ignore bower_components 241 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 242 | #bower_components/ 243 | 244 | # RIA/Silverlight projects 245 | Generated_Code/ 246 | 247 | # Backup & report files from converting an old project file 248 | # to a newer Visual Studio version. Backup files are not needed, 249 | # because we have git ;-) 250 | _UpgradeReport_Files/ 251 | Backup*/ 252 | UpgradeLog*.XML 253 | UpgradeLog*.htm 254 | ServiceFabricBackup/ 255 | *.rptproj.bak 256 | 257 | # SQL Server files 258 | *.mdf 259 | *.ldf 260 | *.ndf 261 | 262 | # Business Intelligence projects 263 | *.rdl.data 264 | *.bim.layout 265 | *.bim_*.settings 266 | *.rptproj.rsuser 267 | *- [Bb]ackup.rdl 268 | *- [Bb]ackup ([0-9]).rdl 269 | *- [Bb]ackup ([0-9][0-9]).rdl 270 | 271 | # Microsoft Fakes 272 | FakesAssemblies/ 273 | 274 | # GhostDoc plugin setting file 275 | *.GhostDoc.xml 276 | 277 | # Node.js Tools for Visual Studio 278 | .ntvs_analysis.dat 279 | node_modules/ 280 | 281 | # Visual Studio 6 build log 282 | *.plg 283 | 284 | # Visual Studio 6 workspace options file 285 | *.opt 286 | 287 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 288 | *.vbw 289 | 290 | # Visual Studio LightSwitch build output 291 | **/*.HTMLClient/GeneratedArtifacts 292 | **/*.DesktopClient/GeneratedArtifacts 293 | **/*.DesktopClient/ModelManifest.xml 294 | **/*.Server/GeneratedArtifacts 295 | **/*.Server/ModelManifest.xml 296 | _Pvt_Extensions 297 | 298 | # Paket dependency manager 299 | .paket/paket.exe 300 | paket-files/ 301 | 302 | # FAKE - F# Make 303 | .fake/ 304 | 305 | # CodeRush personal settings 306 | .cr/personal 307 | 308 | # Python Tools for Visual Studio (PTVS) 309 | __pycache__/ 310 | *.pyc 311 | 312 | # Cake - Uncomment if you are using it 313 | # tools/** 314 | # !tools/packages.config 315 | 316 | # Tabs Studio 317 | *.tss 318 | 319 | # Telerik's JustMock configuration file 320 | *.jmconfig 321 | 322 | # BizTalk build output 323 | *.btp.cs 324 | *.btm.cs 325 | *.odx.cs 326 | *.xsd.cs 327 | 328 | # OpenCover UI analysis results 329 | OpenCover/ 330 | 331 | # Azure Stream Analytics local run output 332 | ASALocalRun/ 333 | 334 | # MSBuild Binary and Structured Log 335 | *.binlog 336 | 337 | # NVidia Nsight GPU debugger configuration file 338 | *.nvuser 339 | 340 | # MFractors (Xamarin productivity tool) working folder 341 | .mfractor/ 342 | 343 | # Local History for Visual Studio 344 | .localhistory/ 345 | 346 | # BeatPulse healthcheck temp database 347 | healthchecksdb 348 | 349 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 350 | MigrationBackup/ 351 | 352 | # Ionide (cross platform F# VS Code tools) working folder 353 | .ionide/ 354 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Microsoft Open Source Code of Conduct 2 | 3 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 4 | 5 | Resources: 6 | 7 | - [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) 8 | - [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) 9 | - Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public 379 | licenses. Notwithstanding, Creative Commons may elect to apply one of 380 | its public licenses to material it publishes and in those instances 381 | will be considered the “Licensor.” The text of the Creative Commons 382 | public licenses is dedicated to the public domain under the CC0 Public 383 | Domain Dedication. Except for the limited purpose of indicating that 384 | material is shared under a Creative Commons public license or as 385 | otherwise permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the 393 | public licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Microsoft Corporation. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | A collection of simple drawings illustrating the main concepts of Microsoft Fabric to empower anyone to build stuff on Fabric. 5 | ![GitHub Repo stars](https://img.shields.io/github/stars/microsoft/fabricnotes?style=social) 6 | 7 | ## **[Browse all the notes here](https://microsoft.github.io/fabricnotes)** 8 | 9 |

10 | 11 | 12 |
13 |
14 |
15 |
16 | 17 | # Contributing 18 | 19 | This project welcomes contributions and suggestions. Most contributions require you to agree to a 20 | Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us 21 | the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. 22 | 23 | **Please open an issue before starting to work on a note**. We are creating a set of templates to 24 | help you create notes with the same "look & feel". 25 | 26 | When you submit a pull request, a CLA bot will automatically determine whether you need to provide 27 | a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions 28 | provided by the bot. You will only need to do this once across all repos using our CLA. 29 | 30 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 31 | For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or 32 | contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. 33 | 34 | # Legal Notices 35 | 36 | Microsoft and any contributors grant you a license to the Microsoft documentation and other content 37 | in this repository under the [Creative Commons Attribution 4.0 International Public License](https://creativecommons.org/licenses/by/4.0/legalcode), 38 | see the [LICENSE](LICENSE) file, and grant you a license to any code in the repository under the [MIT License](https://opensource.org/licenses/MIT), see the 39 | [LICENSE-CODE](LICENSE-CODE) file. 40 | 41 | Microsoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation 42 | may be either trademarks or registered trademarks of Microsoft in the United States and/or other countries. 43 | The licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks. 44 | Microsoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653. 45 | 46 | Privacy information can be found at https://privacy.microsoft.com/en-us/ 47 | 48 | Microsoft and any contributors reserve all other rights, whether under their respective copyrights, patents, 49 | or trademarks, whether by implication, estoppel or otherwise. 50 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Security 4 | 5 | Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). 6 | 7 | If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below. 8 | 9 | ## Reporting Security Issues 10 | 11 | **Please do not report security vulnerabilities through public GitHub issues.** 12 | 13 | Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report). 14 | 15 | If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey). 16 | 17 | You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc). 18 | 19 | Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: 20 | 21 | * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) 22 | * Full paths of source file(s) related to the manifestation of the issue 23 | * The location of the affected source code (tag/branch/commit or direct URL) 24 | * Any special configuration required to reproduce the issue 25 | * Step-by-step instructions to reproduce the issue 26 | * Proof-of-concept or exploit code (if possible) 27 | * Impact of the issue, including how an attacker might exploit the issue 28 | 29 | This information will help us triage your report more quickly. 30 | 31 | If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs. 32 | 33 | ## Preferred Languages 34 | 35 | We prefer all communications to be in English. 36 | 37 | ## Policy 38 | 39 | Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd). 40 | 41 | 42 | -------------------------------------------------------------------------------- /build/NoteMetadata.cs: -------------------------------------------------------------------------------- 1 | using YamlDotNet.Serialization; 2 | 3 | public class NoteMetadata 4 | { 5 | [YamlMember(Alias = "id")] 6 | public string Id { get; set; } 7 | [YamlMember(Alias = "title")] 8 | public string Title { get; set; } 9 | 10 | [YamlMember(Alias = "imgalt")] 11 | public string ImageDescription { get; set; } 12 | 13 | public string FileNameId { get; set; } 14 | } -------------------------------------------------------------------------------- /build/Program.cs: -------------------------------------------------------------------------------- 1 | using System.Text; 2 | using Markdig; 3 | using Markdig.Extensions.Yaml; 4 | using Markdig.Syntax; 5 | using Stubble.Core.Builders; 6 | using YamlDotNet.Serialization; 7 | using SixLabors.ImageSharp; 8 | using SixLabors.ImageSharp.Processing; 9 | 10 | 11 | 12 | IDeserializer YamlDeserializer = 13 | new DeserializerBuilder() 14 | .IgnoreUnmatchedProperties() 15 | .Build(); 16 | 17 | MarkdownPipeline Pipeline 18 | = new MarkdownPipelineBuilder() 19 | .UseYamlFrontMatter() 20 | .Build(); 21 | 22 | 23 | Console.WriteLine("Fabric Notes Generator"); 24 | 25 | string outputfolder = "dist"; 26 | 27 | Console.WriteLine("Creating output folder"); 28 | if (Directory.Exists(outputfolder)) 29 | { 30 | Console.WriteLine($"Deleting existing {outputfolder}"); 31 | Directory.Delete(outputfolder, true); 32 | } 33 | Directory.CreateDirectory(outputfolder); 34 | 35 | // 1. Copy build/public folder to outputfolder 36 | Console.WriteLine($"Copying build/public folder to {outputfolder}"); 37 | DirectoryCopy("build/public", outputfolder, true); 38 | 39 | Directory.CreateDirectory(Path.Combine(outputfolder, "images", "notes")); 40 | 41 | // 2. Listing all notes 42 | 43 | // 3. For each note - For each markdown file in notes folder 44 | // Read markdown file 45 | 46 | var allNotes = Directory.GetFiles("notes", "*.md", SearchOption.AllDirectories).ToList(); 47 | allNotes.Sort(); 48 | 49 | var allNotesMetadata = new List(); 50 | 51 | Console.WriteLine($"Discovered {allNotes.Count} notes"); 52 | 53 | foreach (var note in allNotes) 54 | { 55 | var document = Markdown.Parse(File.ReadAllText(note), Pipeline); 56 | var block = document 57 | .Descendants() 58 | .FirstOrDefault(); 59 | 60 | if (block == null) 61 | { 62 | Console.WriteLine($"Note {Path.GetFileNameWithoutExtension(note)} has no metadata. Skipping"); 63 | continue; 64 | } 65 | 66 | var noteMetadata = GetNoteMetadata(block); 67 | 68 | // Copy image 69 | var noteFileNameId = Path.GetFileNameWithoutExtension(note); 70 | noteMetadata.FileNameId = noteFileNameId; 71 | File.Copy(Path.Combine("notes", $"{noteFileNameId}.png"), Path.Combine(outputfolder, "images", "notes", $"{noteFileNameId}.png"), true); 72 | 73 | // Generate thumbnails 384x216 74 | using var image = Image.Load(Path.Combine(outputfolder, "images", "notes", $"{noteFileNameId}.png")); 75 | image.Mutate(x => x.Resize(384, 216)); 76 | image.Save(Path.Combine(outputfolder, "images", "notes", $"{noteFileNameId}-small.png")); 77 | image.Save(Path.Combine(outputfolder, "images", "notes", $"{noteFileNameId}-small.webp")); 78 | 79 | allNotesMetadata.Add(noteMetadata); 80 | } 81 | 82 | // 4. Generate index.html 83 | var stubble = new StubbleBuilder().Build(); 84 | 85 | var templateContext = new 86 | { 87 | UpdateDate = DateTime.Now.ToString("dddd dd MMMM yyyy HH:mm:ss"), 88 | Notes = allNotesMetadata, 89 | IsProductionBuild = Environment.GetEnvironmentVariable("GITHUB_ACTIONS") == "true" 90 | }; 91 | 92 | using (StreamReader streamReader = new StreamReader(Path.Combine("build", "templates", "index.html"), Encoding.UTF8)) 93 | { 94 | var output = stubble.Render(streamReader.ReadToEnd(), templateContext); 95 | File.WriteAllText(Path.Combine(outputfolder, "index.html"), output); 96 | } 97 | 98 | Console.WriteLine("Generation done"); 99 | 100 | T GetNoteMetadata(YamlFrontMatterBlock block) 101 | { 102 | var yaml = 103 | block 104 | // this is not a mistake 105 | // we have to call .Lines 2x 106 | .Lines // StringLineGroup[] 107 | .Lines // StringLine[] 108 | .OrderByDescending(x => x.Line) 109 | .Select(x => $"{x}\n") 110 | .ToList() 111 | .Select(x => x.Replace("---", string.Empty)) 112 | .Where(x => !string.IsNullOrWhiteSpace(x)) 113 | .Aggregate((s, agg) => agg + s); 114 | 115 | return YamlDeserializer.Deserialize(yaml); 116 | } 117 | 118 | void DirectoryCopy(string sourceDirName, string destDirName, bool copySubDirs) 119 | { 120 | // Get the subdirectories for the specified directory. 121 | DirectoryInfo dir = new DirectoryInfo(sourceDirName); 122 | 123 | if (!dir.Exists) 124 | { 125 | throw new DirectoryNotFoundException( 126 | "Source directory does not exist or could not be found: " 127 | + sourceDirName); 128 | } 129 | 130 | DirectoryInfo[] dirs = dir.GetDirectories(); 131 | // If the destination directory doesn't exist, create it. 132 | if (!Directory.Exists(destDirName)) 133 | { 134 | Directory.CreateDirectory(destDirName); 135 | } 136 | 137 | // Get the files in the directory and copy them to the new location. 138 | FileInfo[] files = dir.GetFiles(); 139 | foreach (FileInfo file in files) 140 | { 141 | string temppath = Path.Combine(destDirName, file.Name); 142 | file.CopyTo(temppath, false); 143 | } 144 | 145 | // If copying subdirectories, copy them and their contents to new location. 146 | if (copySubDirs) 147 | { 148 | foreach (DirectoryInfo subdir in dirs) 149 | { 150 | string temppath = Path.Combine(destDirName, subdir.Name); 151 | DirectoryCopy(subdir.FullName, temppath, copySubDirs); 152 | } 153 | } 154 | } 155 | -------------------------------------------------------------------------------- /build/build.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net7.0 6 | enable 7 | enable 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /build/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fabric-notes", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "fabric-notes", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "devDependencies": { 12 | "tailwindcss": "^3.3.2" 13 | } 14 | }, 15 | "node_modules/@alloc/quick-lru": { 16 | "version": "5.2.0", 17 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 18 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 19 | "dev": true, 20 | "engines": { 21 | "node": ">=10" 22 | }, 23 | "funding": { 24 | "url": "https://github.com/sponsors/sindresorhus" 25 | } 26 | }, 27 | "node_modules/@jridgewell/gen-mapping": { 28 | "version": "0.3.3", 29 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 30 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 31 | "dev": true, 32 | "dependencies": { 33 | "@jridgewell/set-array": "^1.0.1", 34 | "@jridgewell/sourcemap-codec": "^1.4.10", 35 | "@jridgewell/trace-mapping": "^0.3.9" 36 | }, 37 | "engines": { 38 | "node": ">=6.0.0" 39 | } 40 | }, 41 | "node_modules/@jridgewell/resolve-uri": { 42 | "version": "3.1.0", 43 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 44 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 45 | "dev": true, 46 | "engines": { 47 | "node": ">=6.0.0" 48 | } 49 | }, 50 | "node_modules/@jridgewell/set-array": { 51 | "version": "1.1.2", 52 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 53 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 54 | "dev": true, 55 | "engines": { 56 | "node": ">=6.0.0" 57 | } 58 | }, 59 | "node_modules/@jridgewell/sourcemap-codec": { 60 | "version": "1.4.15", 61 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 62 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 63 | "dev": true 64 | }, 65 | "node_modules/@jridgewell/trace-mapping": { 66 | "version": "0.3.18", 67 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 68 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 69 | "dev": true, 70 | "dependencies": { 71 | "@jridgewell/resolve-uri": "3.1.0", 72 | "@jridgewell/sourcemap-codec": "1.4.14" 73 | } 74 | }, 75 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 76 | "version": "1.4.14", 77 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 78 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", 79 | "dev": true 80 | }, 81 | "node_modules/@nodelib/fs.scandir": { 82 | "version": "2.1.5", 83 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 84 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 85 | "dev": true, 86 | "dependencies": { 87 | "@nodelib/fs.stat": "2.0.5", 88 | "run-parallel": "^1.1.9" 89 | }, 90 | "engines": { 91 | "node": ">= 8" 92 | } 93 | }, 94 | "node_modules/@nodelib/fs.stat": { 95 | "version": "2.0.5", 96 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 97 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 98 | "dev": true, 99 | "engines": { 100 | "node": ">= 8" 101 | } 102 | }, 103 | "node_modules/@nodelib/fs.walk": { 104 | "version": "1.2.8", 105 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 106 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 107 | "dev": true, 108 | "dependencies": { 109 | "@nodelib/fs.scandir": "2.1.5", 110 | "fastq": "^1.6.0" 111 | }, 112 | "engines": { 113 | "node": ">= 8" 114 | } 115 | }, 116 | "node_modules/any-promise": { 117 | "version": "1.3.0", 118 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 119 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 120 | "dev": true 121 | }, 122 | "node_modules/anymatch": { 123 | "version": "3.1.3", 124 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 125 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 126 | "dev": true, 127 | "dependencies": { 128 | "normalize-path": "^3.0.0", 129 | "picomatch": "^2.0.4" 130 | }, 131 | "engines": { 132 | "node": ">= 8" 133 | } 134 | }, 135 | "node_modules/arg": { 136 | "version": "5.0.2", 137 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 138 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 139 | "dev": true 140 | }, 141 | "node_modules/balanced-match": { 142 | "version": "1.0.2", 143 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 144 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 145 | "dev": true 146 | }, 147 | "node_modules/binary-extensions": { 148 | "version": "2.2.0", 149 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 150 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 151 | "dev": true, 152 | "engines": { 153 | "node": ">=8" 154 | } 155 | }, 156 | "node_modules/brace-expansion": { 157 | "version": "1.1.11", 158 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 159 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 160 | "dev": true, 161 | "dependencies": { 162 | "balanced-match": "^1.0.0", 163 | "concat-map": "0.0.1" 164 | } 165 | }, 166 | "node_modules/braces": { 167 | "version": "3.0.2", 168 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 169 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 170 | "dev": true, 171 | "dependencies": { 172 | "fill-range": "^7.0.1" 173 | }, 174 | "engines": { 175 | "node": ">=8" 176 | } 177 | }, 178 | "node_modules/camelcase-css": { 179 | "version": "2.0.1", 180 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 181 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 182 | "dev": true, 183 | "engines": { 184 | "node": ">= 6" 185 | } 186 | }, 187 | "node_modules/chokidar": { 188 | "version": "3.5.3", 189 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 190 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 191 | "dev": true, 192 | "funding": [ 193 | { 194 | "type": "individual", 195 | "url": "https://paulmillr.com/funding/" 196 | } 197 | ], 198 | "dependencies": { 199 | "anymatch": "~3.1.2", 200 | "braces": "~3.0.2", 201 | "glob-parent": "~5.1.2", 202 | "is-binary-path": "~2.1.0", 203 | "is-glob": "~4.0.1", 204 | "normalize-path": "~3.0.0", 205 | "readdirp": "~3.6.0" 206 | }, 207 | "engines": { 208 | "node": ">= 8.10.0" 209 | }, 210 | "optionalDependencies": { 211 | "fsevents": "~2.3.2" 212 | } 213 | }, 214 | "node_modules/chokidar/node_modules/glob-parent": { 215 | "version": "5.1.2", 216 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 217 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 218 | "dev": true, 219 | "dependencies": { 220 | "is-glob": "^4.0.1" 221 | }, 222 | "engines": { 223 | "node": ">= 6" 224 | } 225 | }, 226 | "node_modules/commander": { 227 | "version": "4.1.1", 228 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 229 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 230 | "dev": true, 231 | "engines": { 232 | "node": ">= 6" 233 | } 234 | }, 235 | "node_modules/concat-map": { 236 | "version": "0.0.1", 237 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 238 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 239 | "dev": true 240 | }, 241 | "node_modules/cssesc": { 242 | "version": "3.0.0", 243 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 244 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 245 | "dev": true, 246 | "bin": { 247 | "cssesc": "bin/cssesc" 248 | }, 249 | "engines": { 250 | "node": ">=4" 251 | } 252 | }, 253 | "node_modules/didyoumean": { 254 | "version": "1.2.2", 255 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 256 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 257 | "dev": true 258 | }, 259 | "node_modules/dlv": { 260 | "version": "1.1.3", 261 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 262 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 263 | "dev": true 264 | }, 265 | "node_modules/fast-glob": { 266 | "version": "3.2.12", 267 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 268 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 269 | "dev": true, 270 | "dependencies": { 271 | "@nodelib/fs.stat": "^2.0.2", 272 | "@nodelib/fs.walk": "^1.2.3", 273 | "glob-parent": "^5.1.2", 274 | "merge2": "^1.3.0", 275 | "micromatch": "^4.0.4" 276 | }, 277 | "engines": { 278 | "node": ">=8.6.0" 279 | } 280 | }, 281 | "node_modules/fast-glob/node_modules/glob-parent": { 282 | "version": "5.1.2", 283 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 284 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 285 | "dev": true, 286 | "dependencies": { 287 | "is-glob": "^4.0.1" 288 | }, 289 | "engines": { 290 | "node": ">= 6" 291 | } 292 | }, 293 | "node_modules/fastq": { 294 | "version": "1.15.0", 295 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 296 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 297 | "dev": true, 298 | "dependencies": { 299 | "reusify": "^1.0.4" 300 | } 301 | }, 302 | "node_modules/fill-range": { 303 | "version": "7.0.1", 304 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 305 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 306 | "dev": true, 307 | "dependencies": { 308 | "to-regex-range": "^5.0.1" 309 | }, 310 | "engines": { 311 | "node": ">=8" 312 | } 313 | }, 314 | "node_modules/fs.realpath": { 315 | "version": "1.0.0", 316 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 317 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 318 | "dev": true 319 | }, 320 | "node_modules/fsevents": { 321 | "version": "2.3.2", 322 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 323 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 324 | "dev": true, 325 | "hasInstallScript": true, 326 | "optional": true, 327 | "os": [ 328 | "darwin" 329 | ], 330 | "engines": { 331 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 332 | } 333 | }, 334 | "node_modules/function-bind": { 335 | "version": "1.1.1", 336 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 337 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 338 | "dev": true 339 | }, 340 | "node_modules/glob": { 341 | "version": "7.1.6", 342 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 343 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 344 | "dev": true, 345 | "dependencies": { 346 | "fs.realpath": "^1.0.0", 347 | "inflight": "^1.0.4", 348 | "inherits": "2", 349 | "minimatch": "^3.0.4", 350 | "once": "^1.3.0", 351 | "path-is-absolute": "^1.0.0" 352 | }, 353 | "engines": { 354 | "node": "*" 355 | }, 356 | "funding": { 357 | "url": "https://github.com/sponsors/isaacs" 358 | } 359 | }, 360 | "node_modules/glob-parent": { 361 | "version": "6.0.2", 362 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 363 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 364 | "dev": true, 365 | "dependencies": { 366 | "is-glob": "^4.0.3" 367 | }, 368 | "engines": { 369 | "node": ">=10.13.0" 370 | } 371 | }, 372 | "node_modules/has": { 373 | "version": "1.0.3", 374 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 375 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 376 | "dev": true, 377 | "dependencies": { 378 | "function-bind": "^1.1.1" 379 | }, 380 | "engines": { 381 | "node": ">= 0.4.0" 382 | } 383 | }, 384 | "node_modules/inflight": { 385 | "version": "1.0.6", 386 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 387 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 388 | "dev": true, 389 | "dependencies": { 390 | "once": "^1.3.0", 391 | "wrappy": "1" 392 | } 393 | }, 394 | "node_modules/inherits": { 395 | "version": "2.0.4", 396 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 397 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 398 | "dev": true 399 | }, 400 | "node_modules/is-binary-path": { 401 | "version": "2.1.0", 402 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 403 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 404 | "dev": true, 405 | "dependencies": { 406 | "binary-extensions": "^2.0.0" 407 | }, 408 | "engines": { 409 | "node": ">=8" 410 | } 411 | }, 412 | "node_modules/is-core-module": { 413 | "version": "2.12.1", 414 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", 415 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", 416 | "dev": true, 417 | "dependencies": { 418 | "has": "^1.0.3" 419 | }, 420 | "funding": { 421 | "url": "https://github.com/sponsors/ljharb" 422 | } 423 | }, 424 | "node_modules/is-extglob": { 425 | "version": "2.1.1", 426 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 427 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 428 | "dev": true, 429 | "engines": { 430 | "node": ">=0.10.0" 431 | } 432 | }, 433 | "node_modules/is-glob": { 434 | "version": "4.0.3", 435 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 436 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 437 | "dev": true, 438 | "dependencies": { 439 | "is-extglob": "^2.1.1" 440 | }, 441 | "engines": { 442 | "node": ">=0.10.0" 443 | } 444 | }, 445 | "node_modules/is-number": { 446 | "version": "7.0.0", 447 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 448 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 449 | "dev": true, 450 | "engines": { 451 | "node": ">=0.12.0" 452 | } 453 | }, 454 | "node_modules/jiti": { 455 | "version": "1.18.2", 456 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", 457 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", 458 | "dev": true, 459 | "bin": { 460 | "jiti": "bin/jiti.js" 461 | } 462 | }, 463 | "node_modules/lilconfig": { 464 | "version": "2.1.0", 465 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 466 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 467 | "dev": true, 468 | "engines": { 469 | "node": ">=10" 470 | } 471 | }, 472 | "node_modules/lines-and-columns": { 473 | "version": "1.2.4", 474 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 475 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 476 | "dev": true 477 | }, 478 | "node_modules/merge2": { 479 | "version": "1.4.1", 480 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 481 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 482 | "dev": true, 483 | "engines": { 484 | "node": ">= 8" 485 | } 486 | }, 487 | "node_modules/micromatch": { 488 | "version": "4.0.5", 489 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 490 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 491 | "dev": true, 492 | "dependencies": { 493 | "braces": "^3.0.2", 494 | "picomatch": "^2.3.1" 495 | }, 496 | "engines": { 497 | "node": ">=8.6" 498 | } 499 | }, 500 | "node_modules/minimatch": { 501 | "version": "3.1.2", 502 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 503 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 504 | "dev": true, 505 | "dependencies": { 506 | "brace-expansion": "^1.1.7" 507 | }, 508 | "engines": { 509 | "node": "*" 510 | } 511 | }, 512 | "node_modules/mz": { 513 | "version": "2.7.0", 514 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 515 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 516 | "dev": true, 517 | "dependencies": { 518 | "any-promise": "^1.0.0", 519 | "object-assign": "^4.0.1", 520 | "thenify-all": "^1.0.0" 521 | } 522 | }, 523 | "node_modules/nanoid": { 524 | "version": "3.3.6", 525 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 526 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 527 | "dev": true, 528 | "funding": [ 529 | { 530 | "type": "github", 531 | "url": "https://github.com/sponsors/ai" 532 | } 533 | ], 534 | "bin": { 535 | "nanoid": "bin/nanoid.cjs" 536 | }, 537 | "engines": { 538 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 539 | } 540 | }, 541 | "node_modules/normalize-path": { 542 | "version": "3.0.0", 543 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 544 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 545 | "dev": true, 546 | "engines": { 547 | "node": ">=0.10.0" 548 | } 549 | }, 550 | "node_modules/object-assign": { 551 | "version": "4.1.1", 552 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 553 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 554 | "dev": true, 555 | "engines": { 556 | "node": ">=0.10.0" 557 | } 558 | }, 559 | "node_modules/object-hash": { 560 | "version": "3.0.0", 561 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 562 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 563 | "dev": true, 564 | "engines": { 565 | "node": ">= 6" 566 | } 567 | }, 568 | "node_modules/once": { 569 | "version": "1.4.0", 570 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 571 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 572 | "dev": true, 573 | "dependencies": { 574 | "wrappy": "1" 575 | } 576 | }, 577 | "node_modules/path-is-absolute": { 578 | "version": "1.0.1", 579 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 580 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 581 | "dev": true, 582 | "engines": { 583 | "node": ">=0.10.0" 584 | } 585 | }, 586 | "node_modules/path-parse": { 587 | "version": "1.0.7", 588 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 589 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 590 | "dev": true 591 | }, 592 | "node_modules/picocolors": { 593 | "version": "1.0.0", 594 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 595 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 596 | "dev": true 597 | }, 598 | "node_modules/picomatch": { 599 | "version": "2.3.1", 600 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 601 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 602 | "dev": true, 603 | "engines": { 604 | "node": ">=8.6" 605 | }, 606 | "funding": { 607 | "url": "https://github.com/sponsors/jonschlinkert" 608 | } 609 | }, 610 | "node_modules/pify": { 611 | "version": "2.3.0", 612 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 613 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 614 | "dev": true, 615 | "engines": { 616 | "node": ">=0.10.0" 617 | } 618 | }, 619 | "node_modules/pirates": { 620 | "version": "4.0.5", 621 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 622 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 623 | "dev": true, 624 | "engines": { 625 | "node": ">= 6" 626 | } 627 | }, 628 | "node_modules/postcss": { 629 | "version": "8.4.23", 630 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", 631 | "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", 632 | "dev": true, 633 | "funding": [ 634 | { 635 | "type": "opencollective", 636 | "url": "https://opencollective.com/postcss/" 637 | }, 638 | { 639 | "type": "tidelift", 640 | "url": "https://tidelift.com/funding/github/npm/postcss" 641 | }, 642 | { 643 | "type": "github", 644 | "url": "https://github.com/sponsors/ai" 645 | } 646 | ], 647 | "dependencies": { 648 | "nanoid": "^3.3.6", 649 | "picocolors": "^1.0.0", 650 | "source-map-js": "^1.0.2" 651 | }, 652 | "engines": { 653 | "node": "^10 || ^12 || >=14" 654 | } 655 | }, 656 | "node_modules/postcss-import": { 657 | "version": "15.1.0", 658 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 659 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 660 | "dev": true, 661 | "dependencies": { 662 | "postcss-value-parser": "^4.0.0", 663 | "read-cache": "^1.0.0", 664 | "resolve": "^1.1.7" 665 | }, 666 | "engines": { 667 | "node": ">=14.0.0" 668 | }, 669 | "peerDependencies": { 670 | "postcss": "^8.0.0" 671 | } 672 | }, 673 | "node_modules/postcss-js": { 674 | "version": "4.0.1", 675 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 676 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 677 | "dev": true, 678 | "dependencies": { 679 | "camelcase-css": "^2.0.1" 680 | }, 681 | "engines": { 682 | "node": "^12 || ^14 || >= 16" 683 | }, 684 | "funding": { 685 | "type": "opencollective", 686 | "url": "https://opencollective.com/postcss/" 687 | }, 688 | "peerDependencies": { 689 | "postcss": "^8.4.21" 690 | } 691 | }, 692 | "node_modules/postcss-load-config": { 693 | "version": "4.0.1", 694 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 695 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 696 | "dev": true, 697 | "dependencies": { 698 | "lilconfig": "^2.0.5", 699 | "yaml": "^2.1.1" 700 | }, 701 | "engines": { 702 | "node": ">= 14" 703 | }, 704 | "funding": { 705 | "type": "opencollective", 706 | "url": "https://opencollective.com/postcss/" 707 | }, 708 | "peerDependencies": { 709 | "postcss": ">=8.0.9", 710 | "ts-node": ">=9.0.0" 711 | }, 712 | "peerDependenciesMeta": { 713 | "postcss": { 714 | "optional": true 715 | }, 716 | "ts-node": { 717 | "optional": true 718 | } 719 | } 720 | }, 721 | "node_modules/postcss-nested": { 722 | "version": "6.0.1", 723 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 724 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 725 | "dev": true, 726 | "dependencies": { 727 | "postcss-selector-parser": "^6.0.11" 728 | }, 729 | "engines": { 730 | "node": ">=12.0" 731 | }, 732 | "funding": { 733 | "type": "opencollective", 734 | "url": "https://opencollective.com/postcss/" 735 | }, 736 | "peerDependencies": { 737 | "postcss": "^8.2.14" 738 | } 739 | }, 740 | "node_modules/postcss-selector-parser": { 741 | "version": "6.0.13", 742 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 743 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 744 | "dev": true, 745 | "dependencies": { 746 | "cssesc": "^3.0.0", 747 | "util-deprecate": "^1.0.2" 748 | }, 749 | "engines": { 750 | "node": ">=4" 751 | } 752 | }, 753 | "node_modules/postcss-value-parser": { 754 | "version": "4.2.0", 755 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 756 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 757 | "dev": true 758 | }, 759 | "node_modules/queue-microtask": { 760 | "version": "1.2.3", 761 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 762 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 763 | "dev": true, 764 | "funding": [ 765 | { 766 | "type": "github", 767 | "url": "https://github.com/sponsors/feross" 768 | }, 769 | { 770 | "type": "patreon", 771 | "url": "https://www.patreon.com/feross" 772 | }, 773 | { 774 | "type": "consulting", 775 | "url": "https://feross.org/support" 776 | } 777 | ] 778 | }, 779 | "node_modules/read-cache": { 780 | "version": "1.0.0", 781 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 782 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 783 | "dev": true, 784 | "dependencies": { 785 | "pify": "^2.3.0" 786 | } 787 | }, 788 | "node_modules/readdirp": { 789 | "version": "3.6.0", 790 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 791 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 792 | "dev": true, 793 | "dependencies": { 794 | "picomatch": "^2.2.1" 795 | }, 796 | "engines": { 797 | "node": ">=8.10.0" 798 | } 799 | }, 800 | "node_modules/resolve": { 801 | "version": "1.22.2", 802 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 803 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 804 | "dev": true, 805 | "dependencies": { 806 | "is-core-module": "^2.11.0", 807 | "path-parse": "^1.0.7", 808 | "supports-preserve-symlinks-flag": "^1.0.0" 809 | }, 810 | "bin": { 811 | "resolve": "bin/resolve" 812 | }, 813 | "funding": { 814 | "url": "https://github.com/sponsors/ljharb" 815 | } 816 | }, 817 | "node_modules/reusify": { 818 | "version": "1.0.4", 819 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 820 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 821 | "dev": true, 822 | "engines": { 823 | "iojs": ">=1.0.0", 824 | "node": ">=0.10.0" 825 | } 826 | }, 827 | "node_modules/run-parallel": { 828 | "version": "1.2.0", 829 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 830 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 831 | "dev": true, 832 | "funding": [ 833 | { 834 | "type": "github", 835 | "url": "https://github.com/sponsors/feross" 836 | }, 837 | { 838 | "type": "patreon", 839 | "url": "https://www.patreon.com/feross" 840 | }, 841 | { 842 | "type": "consulting", 843 | "url": "https://feross.org/support" 844 | } 845 | ], 846 | "dependencies": { 847 | "queue-microtask": "^1.2.2" 848 | } 849 | }, 850 | "node_modules/source-map-js": { 851 | "version": "1.0.2", 852 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 853 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 854 | "dev": true, 855 | "engines": { 856 | "node": ">=0.10.0" 857 | } 858 | }, 859 | "node_modules/sucrase": { 860 | "version": "3.32.0", 861 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", 862 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", 863 | "dev": true, 864 | "dependencies": { 865 | "@jridgewell/gen-mapping": "^0.3.2", 866 | "commander": "^4.0.0", 867 | "glob": "7.1.6", 868 | "lines-and-columns": "^1.1.6", 869 | "mz": "^2.7.0", 870 | "pirates": "^4.0.1", 871 | "ts-interface-checker": "^0.1.9" 872 | }, 873 | "bin": { 874 | "sucrase": "bin/sucrase", 875 | "sucrase-node": "bin/sucrase-node" 876 | }, 877 | "engines": { 878 | "node": ">=8" 879 | } 880 | }, 881 | "node_modules/supports-preserve-symlinks-flag": { 882 | "version": "1.0.0", 883 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 884 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 885 | "dev": true, 886 | "engines": { 887 | "node": ">= 0.4" 888 | }, 889 | "funding": { 890 | "url": "https://github.com/sponsors/ljharb" 891 | } 892 | }, 893 | "node_modules/tailwindcss": { 894 | "version": "3.3.2", 895 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", 896 | "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", 897 | "dev": true, 898 | "dependencies": { 899 | "@alloc/quick-lru": "^5.2.0", 900 | "arg": "^5.0.2", 901 | "chokidar": "^3.5.3", 902 | "didyoumean": "^1.2.2", 903 | "dlv": "^1.1.3", 904 | "fast-glob": "^3.2.12", 905 | "glob-parent": "^6.0.2", 906 | "is-glob": "^4.0.3", 907 | "jiti": "^1.18.2", 908 | "lilconfig": "^2.1.0", 909 | "micromatch": "^4.0.5", 910 | "normalize-path": "^3.0.0", 911 | "object-hash": "^3.0.0", 912 | "picocolors": "^1.0.0", 913 | "postcss": "^8.4.23", 914 | "postcss-import": "^15.1.0", 915 | "postcss-js": "^4.0.1", 916 | "postcss-load-config": "^4.0.1", 917 | "postcss-nested": "^6.0.1", 918 | "postcss-selector-parser": "^6.0.11", 919 | "postcss-value-parser": "^4.2.0", 920 | "resolve": "^1.22.2", 921 | "sucrase": "^3.32.0" 922 | }, 923 | "bin": { 924 | "tailwind": "lib/cli.js", 925 | "tailwindcss": "lib/cli.js" 926 | }, 927 | "engines": { 928 | "node": ">=14.0.0" 929 | } 930 | }, 931 | "node_modules/thenify": { 932 | "version": "3.3.1", 933 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 934 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 935 | "dev": true, 936 | "dependencies": { 937 | "any-promise": "^1.0.0" 938 | } 939 | }, 940 | "node_modules/thenify-all": { 941 | "version": "1.6.0", 942 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 943 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 944 | "dev": true, 945 | "dependencies": { 946 | "thenify": ">= 3.1.0 < 4" 947 | }, 948 | "engines": { 949 | "node": ">=0.8" 950 | } 951 | }, 952 | "node_modules/to-regex-range": { 953 | "version": "5.0.1", 954 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 955 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 956 | "dev": true, 957 | "dependencies": { 958 | "is-number": "^7.0.0" 959 | }, 960 | "engines": { 961 | "node": ">=8.0" 962 | } 963 | }, 964 | "node_modules/ts-interface-checker": { 965 | "version": "0.1.13", 966 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 967 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 968 | "dev": true 969 | }, 970 | "node_modules/util-deprecate": { 971 | "version": "1.0.2", 972 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 973 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 974 | "dev": true 975 | }, 976 | "node_modules/wrappy": { 977 | "version": "1.0.2", 978 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 979 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 980 | "dev": true 981 | }, 982 | "node_modules/yaml": { 983 | "version": "2.2.2", 984 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz", 985 | "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==", 986 | "dev": true, 987 | "engines": { 988 | "node": ">= 14" 989 | } 990 | } 991 | } 992 | } 993 | -------------------------------------------------------------------------------- /build/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fabric-notes", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "devDependencies": { 12 | "tailwindcss": "^3.3.2" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /build/public/images/fabric-notes-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/build/public/images/fabric-notes-header.png -------------------------------------------------------------------------------- /build/public/images/fabric-notes-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/build/public/images/fabric-notes-ico.png -------------------------------------------------------------------------------- /build/tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./templates/**/*.{html,js}", "./public/**/*.{html,js}"], 4 | theme: { 5 | extend: {}, 6 | }, 7 | plugins: [], 8 | } 9 | 10 | -------------------------------------------------------------------------------- /build/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Fabric Notes - Simple drawings illustrating the main concepts of Microsoft Fabric 8 | 9 | 10 | 11 | {{#IsProductionBuild}} 12 | 13 | 20 | {{/IsProductionBuild}} 21 | {{^IsProductionBuild}} 22 | 23 | {{/IsProductionBuild}} 24 | 25 | 26 | 27 |
28 |
29 |

Fabric Notes

30 |

Simple drawings illustrating the main concepts of Microsoft Fabric to empower anyone to build stuff on Fabric.

31 |
32 |

Inspired by 🌍 Cosmic Notes

33 | 39 |
40 | 41 |
42 | 61 |
62 | 63 | 67 |
68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /notes/01-welcome.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 01-welcome 3 | title: Welcome to Fabric Notes! 4 | imgalt: "A sketchnote introducing the series of sketchnotes about Microsoft Fabric" 5 | --- 6 | 7 | # Welcome to Fabric Notes! -------------------------------------------------------------------------------- /notes/01-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/01-welcome.png -------------------------------------------------------------------------------- /notes/02-understand-fabric-ui.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 02-understand-fabric-ui 3 | title: Understand Fabric UI 4 | imgalt: "A sketchnote explaining the different components of the Fabric web UI" 5 | --- 6 | 7 | # Understand Fabric UI -------------------------------------------------------------------------------- /notes/02-understand-fabric-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/02-understand-fabric-ui.png -------------------------------------------------------------------------------- /notes/03-fabric-saas-product.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 03-fabric-saas-product 3 | title: Fabric is a Saas. What does it mean? 4 | imgalt: "A sketchnote explaining what does it mean that Fabric is a SaaS product" 5 | --- 6 | 7 | # Fabric is a Saas. What does it mean? -------------------------------------------------------------------------------- /notes/03-fabric-saas-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/03-fabric-saas-product.png -------------------------------------------------------------------------------- /notes/04-lakehouse-vs-warehouse.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 04-lakehouse-vs-warehouse 3 | title: Lakehouse vs Data Warehouse 4 | imgalt: "A sketchnote comparing the lakehouse and the warehouse artifacts on eight different areas" 5 | --- 6 | 7 | # Lakehouse vs Data Warehouse -------------------------------------------------------------------------------- /notes/04-lakehouse-vs-warehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/04-lakehouse-vs-warehouse.png -------------------------------------------------------------------------------- /notes/05-fabric-artifacts-all.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 05-fabric-artifacts-all 3 | title: The Fabric Items - All in One 4 | imgalt: "A sketchnote introducing all the item types in Microsoft Fabric" 5 | --- 6 | 7 | # The Fabric Items - All in One -------------------------------------------------------------------------------- /notes/05-fabric-artifacts-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/05-fabric-artifacts-all.png -------------------------------------------------------------------------------- /notes/06-what-is-fabric.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 06-what-is-fabric 3 | title: What is Microsoft Fabric? 4 | imgalt: "A quick, visual introduction to Microsoft Fabric" 5 | --- 6 | 7 | # -------------------------------------------------------------------------------- /notes/06-what-is-fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/06-what-is-fabric.png -------------------------------------------------------------------------------- /notes/07-4-ways-learn-fabric.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 07-4-ways-learn-fabric 3 | title: 4 Ways to learn Fabric 4 | imgalt: "From documentation to hands-on experience." 5 | --- 6 | -------------------------------------------------------------------------------- /notes/07-4-ways-learn-fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/07-4-ways-learn-fabric.png -------------------------------------------------------------------------------- /notes/08-fabric-lingo-part-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 08-fabric-lingo-part-1 3 | title: Fabric Lingo, part 1 4 | imgalt: "Understand the terms we use across Microsoft Fabric" 5 | --- 6 | -------------------------------------------------------------------------------- /notes/08-fabric-lingo-part-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/08-fabric-lingo-part-1.png -------------------------------------------------------------------------------- /notes/09-onelake-visually.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 09-onelake-visually 3 | title: Onelake, Visually Explained 4 | imgalt: "What is OneLake, the OneDrive for your data" 5 | --- -------------------------------------------------------------------------------- /notes/09-onelake-visually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/09-onelake-visually.png -------------------------------------------------------------------------------- /notes/10-parquet-format.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 10-parquet-format 3 | title: Inside the Parquet Format 4 | imgalt: "Differences between traditional databases/file formats and parquet format" 5 | --- -------------------------------------------------------------------------------- /notes/10-parquet-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/10-parquet-format.png -------------------------------------------------------------------------------- /notes/11-onelake-shortcuts.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 11-onelake-shortcuts 3 | title: Onelake Shortcuts 4 | imgalt: "What are shortcuts and what are the different types existing?" 5 | --- -------------------------------------------------------------------------------- /notes/11-onelake-shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/11-onelake-shortcuts.png -------------------------------------------------------------------------------- /notes/12-sql-endpoints.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 12-sql-endpoints 3 | title: Two SQL endpoints ? 4 | imgalt: "Why there are two different SQL endpoints and what are their differences?" 5 | --- -------------------------------------------------------------------------------- /notes/12-sql-endpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/12-sql-endpoints.png -------------------------------------------------------------------------------- /notes/13-fabric-licensing.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 13-fabric-licensing 3 | title: Fabric licensing 4 | imgalt: "Understand what it costs to use Microsoft Fabric" 5 | --- -------------------------------------------------------------------------------- /notes/13-fabric-licensing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/13-fabric-licensing.png -------------------------------------------------------------------------------- /notes/14-direct-lake.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 14-direct-lake 3 | title: Direct Lake, Power BI new super power 4 | imgalt: "What is the new Direct Lake mode?" 5 | --- -------------------------------------------------------------------------------- /notes/14-direct-lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/14-direct-lake.png -------------------------------------------------------------------------------- /notes/15-fabric-icons.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 15-fabric-icons 3 | title: All Fabric Icons 4 | imgalt: "All Fabric product itcons to download." 5 | --- -------------------------------------------------------------------------------- /notes/15-fabric-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/15-fabric-icons.png -------------------------------------------------------------------------------- /notes/16-create-delta-tables-spark.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 16-create-delta-tables-spark 3 | title: Create Delta Tables with Spark 4 | imgalt: "Create Delta Tables with Spark" 5 | --- -------------------------------------------------------------------------------- /notes/16-create-delta-tables-spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/16-create-delta-tables-spark.png -------------------------------------------------------------------------------- /notes/17-spark-tables-managed-vs-external.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 17-spark-tables-managed-vs-external 3 | title: "Lakehouse Spark Tables: Managed vs. External" 4 | imgalt: "Lakehouse Spark Tables: Managed vs. External" 5 | --- -------------------------------------------------------------------------------- /notes/17-spark-tables-managed-vs-external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/17-spark-tables-managed-vs-external.png -------------------------------------------------------------------------------- /notes/18-relational-to-star-schema.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 18-relational-to-star-schema 3 | title: "DWH Design - From relational to star schema" 4 | imgalt: " Design - From relational to star schema" 5 | --- -------------------------------------------------------------------------------- /notes/18-relational-to-star-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/18-relational-to-star-schema.png -------------------------------------------------------------------------------- /notes/19-ingest-data-datawarehouse.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 19-ingest-data-datawarehouse 3 | title: "Ingest data into the Data Warehouse" 4 | imgalt: "Ingest data into the Data Warehouse" 5 | --- 6 | 7 | ## Copy Into 8 | https://learn.microsoft.com/fabric/data-warehouse/ingest-data-copy 9 | 10 | https://learn.microsoft.com/en-us/sql/t-sql/statements/copy-into-transact-sql?view=fabric&preserve-view=true 11 | 12 | ## CETAS - Create Table as Select 13 | 14 | https://learn.microsoft.com/en-us/fabric/data-warehouse/ingest-data-tsql#creating-a-new-table-with-the-result-of-a-query-by-using-create-table-as-select-ctas 15 | 16 | ## Insert Into 17 | 18 | https://learn.microsoft.com/en-us/fabric/data-warehouse/ingest-data-tsql#ingesting-data-into-existing-tables-with-t-sql-queries 19 | 20 | -------------------------------------------------------------------------------- /notes/19-ingest-data-datawarehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/19-ingest-data-datawarehouse.png -------------------------------------------------------------------------------- /notes/999-coming-soon.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: 999-coming-soon 3 | title: Check tomorrow! 4 | --- 5 | 6 | # Check tomorrow! -------------------------------------------------------------------------------- /notes/999-coming-soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/999-coming-soon.png -------------------------------------------------------------------------------- /notes/test-blank-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/fabricnotes/09f0c2f625904751a8165ef720daca3cd05d05ba/notes/test-blank-note.md --------------------------------------------------------------------------------