Commit 7973c2a8 authored by Grant's avatar Grant
Browse files

initial

parents
Loading
Loading
Loading
Loading
Loading

.editorconfig

0 → 100644
+10 −0
Original line number Diff line number Diff line
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2

.gitattributes

0 → 100644
+4 −0
Original line number Diff line number Diff line
/.yarn/**            linguist-vendored
/.yarn/releases/*    binary
/.yarn/plugins/**/*  binary
/.pnp.*              binary linguist-generated

.gitignore

0 → 100644
+9 −0
Original line number Diff line number Diff line
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
node_modules
dist
 No newline at end of file

.gitlab-ci.yml

0 → 100644
+21 −0
Original line number Diff line number Diff line
include:
  - component: sc07.dev/sc07/ci/package@main
    inputs:
      node_version: 24-alpine
#
build:
  image: node:24-alpine
  stage: build
  before_script:
    - corepack enable
    - corepack prepare --activate
    - yarn
  script:
    - yarn build
  artifacts:
    untracked: false
    when: on_success
    access: all
    expire_in: "10 minutes"
    paths:
      - dist

.nvmrc

0 → 100644
+1 −0
Original line number Diff line number Diff line
v24.4.1