Skip to content

Commit eacff0d

Browse files
updated version
1 parent 9ab92a2 commit eacff0d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
preset: 'ts-jest',
33

44
// Test files are .js and .ts files inside of __tests__ folders and with a suffix of .test or .spec
5-
testMatch: ['**/__tests__/**/?(*.)+(spec|test).[jt]s'],
5+
testMatch: ['<rootDir>/src/**/__tests__/**/?(*.)+(spec|test).[jt]s'],
66

77
// Included files for test coverage (npm run test:coverage)
88
collectCoverageFrom: [

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splitsoftware/splitio-commons",
3-
"version": "0.0.1-beta1",
3+
"version": "0.0.1-beta.2",
44
"description": "Split Javascript SDK common components",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",
@@ -24,7 +24,8 @@
2424
"build:cjs": "rimraf cjs && tsc -m CommonJS --outDir cjs --importHelpers",
2525
"test": "jest",
2626
"test:coverage": "jest --coverage",
27-
"publish:rc": "npm run check && npm run test && npm run build && npm publish --tag rc"
27+
"publish:rc": "npm run check && npm run test && npm run build && npm publish --tag rc",
28+
"publish:stable": "npm run check && npm run test && npm run build && npm publish"
2829
},
2930
"repository": {
3031
"type": "git",

0 commit comments

Comments
 (0)