@ticmas/frontend-utils 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/.yarnrc.yml +7 -1
  2. package/package.json +6 -2
package/.yarnrc.yml CHANGED
@@ -1,2 +1,8 @@
1
1
  defaultSemverRangePrefix: ""
2
- yarnPath: .yarn/releases/yarn-classic.cjs
2
+ yarnPath: .yarn/releases/yarn-classic.cjs
3
+
4
+ npmScopes:
5
+ ticmas:
6
+ npmPublishRegistry: "${CI_API_V4_URL-https://gitlab.com}/projects/${CI_PROJECT_ID-19266967}/packages/npm/"
7
+ npmAlwaysAuth: true
8
+ npmAuthToken: "${CI_JOB_TOKEN-_}"
package/package.json CHANGED
@@ -1,13 +1,17 @@
1
1
  {
2
2
  "name": "@ticmas/frontend-utils",
3
- "version": "1.0.0",
4
- "repository": "https://gitlab.com/vidatec/libs/frontend-utils.git",
3
+ "version": "1.0.2",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://gitlab.com/vidatec/libs/frontend-utils.git"
7
+ },
5
8
  "license": "MIT",
6
9
  "scripts": {
7
10
  "clean-build": "rimraf dist",
8
11
  "build": "yarn clean-build && tsc -p tsconfig.build.json",
9
12
  "build-storybook": "yarn build && typedoc --out public",
10
13
  "lint": "eslint \"src/**/*.ts\" --fix",
14
+ "prepublish": "yarn build",
11
15
  "test": "vitest run --coverage",
12
16
  "test:ci": "vitest run --coverage --poolOptions.threads.singleThread --passWithNoTests",
13
17
  "test:watch": "vitest",