Skip to content

Commit 27a2126

Browse files
Merge pull request #655 from contentstack/staging
Staging
2 parents b717ca5 + 9b7113b commit 27a2126

110 files changed

Lines changed: 24603 additions & 27146 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,3 +219,13 @@ jobs:
219219
- uses: EndBug/add-and-commit@v9
220220
with:
221221
message: 'Released version'
222+
- name: Create Release
223+
uses: actions/create-release@v1
224+
id: create_release
225+
env:
226+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
227+
with:
228+
tag_name: v${{ steps.publish-core.outputs.version }}
229+
release_name: Release ${{ steps.publish-core.outputs.version }}
230+
draft: false
231+
prerelease: false

.github/workflows/sca-scan.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10+
- uses: pnpm/action-setup@v2
11+
with:
12+
version: 7
13+
- name: Use Node.js 16.x
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version: '16.x'
17+
cache: 'pnpm'
18+
- name: Install dependencies
19+
run: pnpm install --no-frozen-lockfile
1020
- name: Run Snyk to check for vulnerabilities
1121
uses: snyk/actions/node@master
1222
env:

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# shamefully-hoist=true

.talismanrc

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@ fileignoreconfig:
44
checksum: 334c48fd220f0015d5dbcb308106d1c48725c158ddc9e4f0949a230388c63656
55
- filename: packages/contentstack-export-to-csv/src/util/index.js
66
checksum: 72f6a2b343949cdf2ab4d567eed471cdb357aee2088d81d05b790f4f7fb49497
7-
version: ''
7+
- filename: packages/contentstack-migration/src/commands/cm/stacks/migration.js
8+
checksum: ce65ec01fe790dbc806ba661db7355ac4f07b2b8b0480e399b033a29f09c4669
9+
- filename: packages/contentstack-migrate-rte/test/utils/index.js
10+
checksum: bc2a509a86174aecbaf0bfc44d6ad3afabe57ef871ec91b796d498e00177e3f0
11+
- filename: packages/contentstack-migrate-rte/test/commands/json-migration.test.js
12+
checksum: 003d9da2bc6b281f67cd5e35234f35c7c39735de240c92105f53b8c5fa9fa840
13+
version: ''

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Contentstack
3+
Copyright (c) 2023 Contentstack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

install.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
#!/bin/bash
22

33
echo 'Installing Contentstack CLI'
4-
npm install || { echo -e '\e[31mFailed to install root dependencies.' && exit 1; }
5-
npx lerna clean -y
6-
npx lerna bootstrap --force-local
7-
npx lerna run prepack || { echo -e '\e[31mInstallable tarball creation failed.' && exit 1; }
4+
npm run setup-repo || { echo -e '\e[31mFailed to install root dependencies.' && exit 1; }
85
echo 'Installtion, Done!!!'
96
cd packages/contentstack || { echo -e '\e[31mCould not found the working directory.' && exit 1; }
107
./bin/run --help

lerna.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)