diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/README.md b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/README.md deleted file mode 100644 index afcda4a66..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# Salesforce DX Project: Next Steps - -Now that you’ve created a Salesforce DX project, what’s next? Here are some documentation resources to get you started. - -## How Do You Plan to Deploy Your Changes? - -Do you want to deploy a set of changes, or create a self-contained application? Choose a [development model](https://developer.salesforce.com/tools/vscode/en/user-guide/development-models). - -## Configure Your Salesforce DX Project - -The `sfdx-project.json` file contains useful configuration information for your project. See [Salesforce DX Project Configuration](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_ws_config.htm) in the _Salesforce DX Developer Guide_ for details about this file. - -## Read All About It - -- [Salesforce Extensions Documentation](https://developer.salesforce.com/tools/vscode/) -- [Salesforce CLI Setup Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm) -- [Salesforce DX Developer Guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_intro.htm) -- [Salesforce CLI Command Reference](https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference.htm) diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/config/project-scratch-def.json b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/config/project-scratch-def.json deleted file mode 100644 index bb72192e2..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/config/project-scratch-def.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "orgName": "Demo company", - "edition": "Developer", - "features": ["EnableSetPasswordInApi"], - "settings": { - "lightningExperienceSettings": { - "enableS1DesktopEnabled": true - }, - "mobileSettings": { - "enableS1EncryptedStoragePref2": false - } - } -} diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/force-app/main/default/lwc/jsconfig.json b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/force-app/main/default/lwc/jsconfig.json deleted file mode 100644 index 01abc135d..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/force-app/main/default/lwc/jsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "experimentalDecorators": true, - "baseUrl": ".", - "paths": { - "c/*": [ - "*" - ] - } - }, - "include": [ - "**/*", - "../../../../.sfdx/typings/lwc/**/*.d.ts" - ], - "typeAcquisition": { - "include": [ - "jest" - ] - } -} diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/jest.config.js b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/jest.config.js deleted file mode 100644 index f5a9fed2b..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/jest.config.js +++ /dev/null @@ -1,6 +0,0 @@ -const { jestConfig } = require('@salesforce/sfdx-lwc-jest/config'); - -module.exports = { - ...jestConfig, - modulePathIgnorePatterns: ['/.localdevserver'] -}; diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/package.json b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/package.json deleted file mode 100644 index bba35bd70..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "salesforce-app", - "private": true, - "version": "1.0.0", - "description": "Salesforce App", - "scripts": { - "lint": "eslint **/{aura,lwc}/**/*.js", - "test": "npm run test:unit", - "test:unit": "sfdx-lwc-jest", - "test:unit:watch": "sfdx-lwc-jest --watch", - "test:unit:debug": "sfdx-lwc-jest --debug", - "test:unit:coverage": "sfdx-lwc-jest --coverage", - "prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"", - "prettier:verify": "prettier --check \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"", - "postinstall": "husky install", - "precommit": "lint-staged" - }, - "devDependencies": { - "@lwc/eslint-plugin-lwc": "^1.1.2", - "@prettier/plugin-xml": "^3.2.2", - "@salesforce/eslint-config-lwc": "^3.2.3", - "@salesforce/eslint-plugin-aura": "^2.0.0", - "@salesforce/eslint-plugin-lightning": "^1.0.0", - "@salesforce/sfdx-lwc-jest": "^3.1.0", - "eslint": "^8.11.0", - "eslint-plugin-import": "^2.25.4", - "eslint-plugin-jest": "^27.6.0", - "husky": "^8.0.3", - "lint-staged": "^15.1.0", - "prettier": "^3.1.0", - "prettier-plugin-apex": "^2.0.1" - }, - "lint-staged": { - "**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [ - "prettier --write" - ], - "**/{aura,lwc}/**/*.js": [ - "eslint" - ] - } -} diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/scripts/apex/hello.apex b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/scripts/apex/hello.apex deleted file mode 100644 index 1fba73250..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/scripts/apex/hello.apex +++ /dev/null @@ -1,10 +0,0 @@ -// Use .apex files to store anonymous Apex. -// You can execute anonymous Apex in VS Code by selecting the -// apex text and running the command: -// SFDX: Execute Anonymous Apex with Currently Selected Text -// You can also execute the entire file by running the command: -// SFDX: Execute Anonymous Apex with Editor Contents - -string tempvar = 'Enter_your_name_here'; -System.debug('Hello World!'); -System.debug('My name is ' + tempvar); \ No newline at end of file diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/scripts/soql/account.soql b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/scripts/soql/account.soql deleted file mode 100644 index 10d4b9c78..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/scripts/soql/account.soql +++ /dev/null @@ -1,6 +0,0 @@ -// Use .soql files to store SOQL queries. -// You can execute queries in VS Code by selecting the -// query text and running the command: -// SFDX: Execute SOQL Query with Currently Selected Text - -SELECT Id, Name FROM Account diff --git a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/sfdx-project.json b/flow_action_components/Base64 To File Converter/Base64ToFileConverter/sfdx-project.json deleted file mode 100644 index fcbe13da9..000000000 --- a/flow_action_components/Base64 To File Converter/Base64ToFileConverter/sfdx-project.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "packageDirectories": [ - { - "path": "force-app", - "default": true - } - ], - "name": "Base64ToFileConverter", - "namespace": "", - "sfdcLoginUrl": "https://login.salesforce.com", - "sourceApiVersion": "61.0" -}