Commit ec2d7d66 authored by Grant's avatar Grant
Browse files

Initial commit

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
+10 −0
Original line number Diff line number Diff line
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.pnp.*
node_modules
dist
 No newline at end of file

.gitlab-ci.yml

0 → 100644
+13 −0
Original line number Diff line number Diff line
publish:
  stage: deploy
  image: node:24-alpine
  rules:
    - if: $CI_PIPELINE_SOURCE != "merge_request_event" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
  before_script:
    - corepack enable && corepack prepare
    - yarn config set npmScopes.sc07.npmAuthToken "${CI_JOB_TOKEN}"
    - yarn
  script:
    - yarn build
    - yarn npm publish
 No newline at end of file

.nvmrc

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