about summary refs log tree commit diff stats
path: root/test/layout/table-overlapping-rowspan-and-colspan.html
Commit message (Expand)AuthorAgeFilesLines
* layout: fix crash on overlapping rowspan/colspanbptato2024-11-171-0/+20
17:06:14 +0300 committer GitHub <noreply@github.com> 2023-06-18 16:06:14 +0200 Create compiler and nimsuggest packages (#22118)' href='/ahoang/Nim/commit/nim.nimble?h=devel&id=2bb7277a616b2ddbcc10a0e2eb1940f6b0b401cb'>2bb7277a6 ^
fb2773411 ^



644318ad9 ^
fb2773411 ^


fb00b482e ^

fb2773411 ^
fb00b482e ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

                                                       
                        
                                                         



                                                                                                                                                                                                     
                                                                                             


                        

                                    
       

                                
include "lib/system/compilation.nim"
version = $NimMajor & "." & $NimMinor & "." & $NimPatch
author = "Andreas Rumpf"
description = "Nim package providing the compiler binary"
license = "MIT"

bin = @["compiler/nim", "nimsuggest/nimsuggest"]
skipFiles = @["azure-pipelines.yml" , "build_all.bat" , "build_all.sh" , "build_nimble.bat" , "build_nimble.sh" , "changelog.md" , "koch.nim.cfg" , "nimblemeta.json" , "readme.md" , "security.md" ]
skipDirs = @["build" , "changelogs" , "ci" , "csources_v2" , "drnim" , "nimdoc", "testament"]

before install:
  when defined(windows):
    if not "bin\nim.exe".fileExists:
      exec "build_all.bat"
  else:
    if not "bin/nim".fileExists:
      exec "./build_all.sh"