Socket
Socket
Sign inDemoInstall

pwa-kit-create-app

Package Overview
Dependencies
70
Maintainers
1
Versions
126
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.8.0-preview.0 to 2.8.0-preview.1

27

CHANGELOG.md

@@ -0,20 +1,30 @@

## v2.8.0-preview.1 (Nov 2, 2023)
## v2.7.1 (May 11, 2023)
- Moved the MRT reference app to the SDKs, so that we can verify eg. Node support [#966](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/966)
## v2.5.0 (Jan 5, 2023)
- Add instanceType to Einstein activity body [#858](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/858)
- Do not use a proxy to call Einstein [#857](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/857)
- Add instanceType to Einstein activity body [#858](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/858)
- Do not use a proxy to call Einstein [#857](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/857)
## v2.4.0 (Dec 01, 2022)
- Update instanceUrl on retail-react-app-demo preset [#799](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/799)
- Update usages of zzrf-001 ODS instance to the new short URL format [#816](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/816)
- Update instanceUrl on retail-react-app-demo preset [#799](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/799)
- Update usages of zzrf-001 ODS instance to the new short URL format [#816](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/816)
## v2.3.0 (Oct 27, 2022)
- Fix generated projects missing required fields in the `manifest.json` file. [#729](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/729)
- Update ODS instance URL for the `retail-react-app-demo` preset. [#799](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/799)
- Fix generated projects missing required fields in the `manifest.json` file. [#729](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/729)
- Update ODS instance URL for the `retail-react-app-demo` preset. [#799](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/799)
## v2.2.0 (Aug 25, 2022)
## v2.1.0 (Jul 05, 2022)
- Throw error if the output directory exists [#627](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/627)
- Throw error if the output directory exists [#627](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/627)
## v2.0.0 (May 16, 2022)
- Pin versions of pwa-kit-* packages [#577](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/577)
- Pin versions of pwa-kit-\* packages [#577](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/577)
- Add typescript-minimal and typescript-minimal-test-project presets [#574](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/574)

@@ -29,2 +39,3 @@ - Drop node 12 support for [#589](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/589)

## v1.5.0 (Mar 17, 2022)
- Node warnings with more readable Node versions [#410](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/410)

@@ -31,0 +42,0 @@ - Fix project generation on Windows when using WSL [#385](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/385)

{
"name": "pwa-kit-create-app",
"version": "2.8.0-preview.0",
"version": "2.8.0-preview.1",
"description": "Salesforce's project generator tool",

@@ -29,19 +29,19 @@ "author": "cc-pwa-kit@salesforce.com",

"engines": {
"node": "^14.0.0 || ^16.0.0",
"npm": "^6.14.4 || ^7.0.0 || ^8.0.0"
"node": "^14.0.0 || ^16.0.0 || ^18.0.0",
"npm": "^6.14.4 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"dependencies": {
"commander": "^2.20.0",
"commander": "^9.5.0",
"deepmerge": "2.2.1",
"inquirer": "7.0.5",
"semver": "^7.3.2",
"inquirer": "7.3.3",
"semver": "^7.3.8",
"shelljs": "^0.8.5",
"slugify": "^1.6.5",
"tar": "^6.1.11"
"tar": "^6.1.13"
},
"devDependencies": {
"internal-lib-build": "^2.8.0-preview.0",
"verdaccio": "^5.9.0"
"internal-lib-build": "^2.8.0-preview.1",
"verdaccio": "^5.22.1"
},
"gitHead": "26eb93cf9758af73c0c08e52f36e61690ede7907"
"gitHead": "a403f8985ec7e88ffeca4902086e42aa2738718b"
}

@@ -424,3 +424,12 @@ #!/usr/bin/env node

const main = (opts) => {
const main = async (opts) => {
console.log('')
console.warn(
'Warning: pwa-kit-create-app has moved to \x1b[1m@salesforce/pwa-kit-create-app\x1b[0m.'
)
console.warn('Please use the new package to use the latest PWA Kit features.')
console.log('')
// Wait 1 second before continuing to draw attention to the warning
await new Promise((resolve) => setTimeout(resolve, 1000))
if (!isUsingCompatibleNode) {

@@ -479,7 +488,7 @@ console.log('')

.then(() => runGenerator(demoProjectAnswers(), opts))
.then((result) => {
.then(() => {
console.log(
'\nTo change your ecommerce back end you will need to update your storefront configuration. More information: https://developer.salesforce.com/docs/commerce/pwa-kit-managed-runtime/guide/configuration-options'
)
return result
return opts.outputDir
})

@@ -486,0 +495,0 @@ case RETAIL_REACT_APP:

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc