@smartsheet-bridge/extensionrc-standard 0.1.0-beta.1 → 1.0.0-beta.1

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @smartsheet-bridge/extensionrc-standard
2
2
 
3
- Shareable configuration file for standard JavaScript and TypeScript extensions using Bridge by Smartsheet tooling.
3
+ Shareable configuration file for standard JavaScript and TypeScript extensions using Bridge by Smartsheet tooling.
4
4
 
5
5
  _This configuration is installed by default with [@smartsheet-bridge/extension-scripts](https://www.npmjs.com/package/@smartsheet-bridge/extension-scripts)._
6
6
 
@@ -10,7 +10,7 @@ _This configuration is installed by default with [@smartsheet-bridge/extension-s
10
10
 
11
11
  ## Why do I need this?
12
12
 
13
- This sharable configuration file defines a basic config for [@smartsheet-bridge/extension-scripts](https://www.npmjs.com/package/@smartsheet-bridge/extension-scripts).
13
+ This sharable configuration file defines a basic config for [@smartsheet-bridge/extension-scripts](https://www.npmjs.com/package/@smartsheet-bridge/extension-scripts).
14
14
 
15
15
  ## How do I use this?
16
16
 
@@ -37,12 +37,5 @@ This package exports a configuration object that can be extended and read by [`@
37
37
  ```js
38
38
  {
39
39
  specFile: 'extension.json',
40
- exclude: [
41
- '**/.*',
42
- '**/*.log',
43
- '**/node_modules/**',
44
- '**/{test,tests,mock,mocks,__test__,__tests__,__mock__,__mocks__}/**',
45
- '**/*.{spec,test}.{js,ts}',
46
- ],
47
40
  }
48
41
  ```
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAEtE,QAAA,MAAM,aAAa,EAAE,SASpB,CAAC;AAEF,SAAS,aAAa,CAAC"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAC;AAEtE,QAAA,MAAM,aAAa,EAAE,SAEpB,CAAC;AAEF,SAAS,aAAa,CAAC"}
package/lib/config.js CHANGED
@@ -1,13 +1,6 @@
1
1
  "use strict";
2
2
  const Configuration = {
3
3
  specFile: 'extension.json',
4
- exclude: [
5
- '**/.*',
6
- '**/*.log',
7
- '**/node_modules/**',
8
- '**/{test,tests,mock,mocks,__test__,__tests__,__mock__,__mocks__}/**',
9
- '**/*.{spec,test}.{js,ts}',
10
- ],
11
4
  };
12
5
  module.exports = Configuration;
13
6
  //# sourceMappingURL=config.js.map
package/lib/config.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":";AAEA,MAAM,aAAa,GAAc;IAC/B,QAAQ,EAAE,gBAAgB;IAC1B,OAAO,EAAE;QACP,OAAO;QACP,UAAU;QACV,oBAAoB;QACpB,qEAAqE;QACrE,0BAA0B;KAC3B;CACF,CAAC;AAEF,iBAAS,aAAa,CAAC"}
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":";AAEA,MAAM,aAAa,GAAc;IAC/B,QAAQ,EAAE,gBAAgB;CAC3B,CAAC;AAEF,iBAAS,aAAa,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@smartsheet-bridge/extensionrc-standard",
3
3
  "description": "Configuration file for a standard JavaScript extension.",
4
- "version": "0.1.0-beta.1",
4
+ "version": "1.0.0-beta.1",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./lib/config.js",
7
7
  "types": "./lib/config.d.ts",
@@ -9,10 +9,6 @@
9
9
  "registry": "https://registry.npmjs.org/",
10
10
  "access": "public"
11
11
  },
12
- "scripts": {
13
- "clean": "rm -rf lib",
14
- "release": "semantic-release"
15
- },
16
12
  "devDependencies": {
17
13
  "@smartsheet-bridge/extension-scripts": "latest"
18
14
  }