This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { plugin } from "bun"; | |
| import { compile, preprocess } from "svelte/compiler"; | |
| import sveltePreprocess from "svelte-preprocess"; | |
| import { readFileSync, existsSync } from "fs"; | |
| import { join } from "path"; | |
| // Detect Svelte version | |
| function getSvelteVersion() { | |
| try { | |
| const packageJsonPath = join( | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | "vim.leader": "<space>", | |
| "vim.normalModeKeyBindingsNonRecursive": [ | |
| { | |
| // File explorer | |
| "before": ["<leader>", "f"], | |
| "commands": ["workbench.view.explorer"] | |
| }, | |
| { | |
| "before": ["<leader>", "r"], | |
| "commands": ["editor.action.rename"] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Copyright 2018 The Flutter team. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| import 'package:flutter/material.dart'; | |
| // import 'package:english_words/english_words.dart'; | |
| void main() => runApp(MyApp()); | |
| // #docregion MyApp | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: Build and Deploy | |
| on: | |
| push: | |
| branches: [develop, master] | |
| # vars across all environments | |
| env: | |
| name: project-name | |
| src_dir: src | |
| version: 0.1.0 |